How to create a stored procedure in SQL Server which creates dynamic partitions and process for the tabular modelHow to return only the Date from a SQL Server DateTime datatypeHow to check if a column exists in a SQL Server table?How to concatenate text from multiple rows into a single text string in SQL server?What is the best way to auto-generate INSERT statements for a SQL Server table?Function vs. Stored Procedure in SQL Serversql server invalid object name - but tables are listed in SSMS tables listHow do I escape a single quote in SQL Server?How do I UPDATE from a SELECT in SQL Server?Search text in stored procedure in SQL ServerHow to Delete using INNER JOIN with SQL Server?
When will the last unambiguous evidence of mankind disappear?
Will copper pour help on my single-layer PCB?
Locked-up DOS computer beeped on keypress. What mechanism caused that?
Why do jet engines sound louder on the ground than inside the aircraft?
Linux ext4 restore file and directory access rights after bad backup/restore
Why is Google approaching my VPS machine?
Could a US citizen born through "birth tourism" become President?
Why aren't there any women super Grandmasters (GMs)?
What does <recently read> etc. mean in TeX's error message
What image should I install on VirtualBox for practising dev ops
Manager is asking me to eat breakfast from now on
Legendre Polynomial Integral over half space
How to change word under cursor to upper case in command mode with shortcut?
Equality of complex numbers in general
🍩🔔🔥Scrambled emoji tale⚛️🎶🛒 #2️⃣
Discontinuous Tube visualization
How to belay quickly ascending top-rope climbers?
Does unblocking power bar outlets through short extension cords increase fire risk?
Is it possible to have a career in SciComp without contributing to arms research?
Could Europeans in Europe demand protection under UN Declaration on the Rights of Indigenous Peoples?
Why is regex [0-9]0,2 not greedy in sed?
How to tell readers that I know my story is factually incorrect?
Why isn't a binary file shown as 0s and 1s?
Is encryption still applied if you ignore the SSL certificate warning for self-signed certs?
How to create a stored procedure in SQL Server which creates dynamic partitions and process for the tabular model
How to return only the Date from a SQL Server DateTime datatypeHow to check if a column exists in a SQL Server table?How to concatenate text from multiple rows into a single text string in SQL server?What is the best way to auto-generate INSERT statements for a SQL Server table?Function vs. Stored Procedure in SQL Serversql server invalid object name - but tables are listed in SSMS tables listHow do I escape a single quote in SQL Server?How do I UPDATE from a SELECT in SQL Server?Search text in stored procedure in SQL ServerHow to Delete using INNER JOIN with SQL Server?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
How to create a stored procedure in SQL Server which creates dynamic partitions and process?
I have below code which creates a partition every time, and does process at one time in liked server.
Using below code I would like to create dynamic multiple partitions and process by passing partition name and fiscal period id to the procedure dynamically.
Please suggest.
declare @xmla varchar(max) = '
"createOrReplace":
"object":
"database": "FlashArchive",
"table": "FORECAST_FLASH",
"partition": "FORECAST_FLASH_368"
,
"partition":
"name": "FORECAST_FLASH_368",
"source":
"query": "select * from FORECAST_FLASH_ARCHIVE_V where fiscal_period_id=368",
"dataSource": "itv.world"
';
EXEC (@xmla) AT SSAS;
declare @xmlap varchar(max) = '
"refresh":
"type": "automatic",
"objects": [
"database": "FlashArchive",
"table": "FORECAST_FLASH",
"partition": "FORECAST_FLASH_368"
]
';
exec (@xmlap) at SSAS;
add a comment |
How to create a stored procedure in SQL Server which creates dynamic partitions and process?
I have below code which creates a partition every time, and does process at one time in liked server.
Using below code I would like to create dynamic multiple partitions and process by passing partition name and fiscal period id to the procedure dynamically.
Please suggest.
declare @xmla varchar(max) = '
"createOrReplace":
"object":
"database": "FlashArchive",
"table": "FORECAST_FLASH",
"partition": "FORECAST_FLASH_368"
,
"partition":
"name": "FORECAST_FLASH_368",
"source":
"query": "select * from FORECAST_FLASH_ARCHIVE_V where fiscal_period_id=368",
"dataSource": "itv.world"
';
EXEC (@xmla) AT SSAS;
declare @xmlap varchar(max) = '
"refresh":
"type": "automatic",
"objects": [
"database": "FlashArchive",
"table": "FORECAST_FLASH",
"partition": "FORECAST_FLASH_368"
]
';
exec (@xmlap) at SSAS;
So basically you want to create a stored proc that takes a fiscal period, which is a number, for example, 368, and creates a partition and refreshes that partition. It would appear that all you need to do is concatenate this number into the correct part of the string. Do you know how to concatenate strings in T-SQL?
– Nick.McDermaid
Mar 26 at 11:30
@Nick.McDermaid I want to pass partition name and fiscal period dynamically to a stored procedure.
– saij
Mar 26 at 11:39
If the fiscal period is368then the partition name is justFORECAST_FLASH_368right? so you only need to pass in the fiscal period. Your first task is to work out how to create a stored prcoedure that takes aVARCHARparameter
– Nick.McDermaid
Mar 26 at 11:49
@Nick.McDermaid I have created stored procedure,which takes VARCHAR parameter.I am unable to find that how to fix above code in procedure and execute in linked server.
– saij
Mar 26 at 11:59
Can you edit your question and post the entire stored procedure. If your parameter name is@FiscalPeriodthen all you have to do is concatenate that to your existing strings. If you are having issues please explain in detail.
– Nick.McDermaid
Mar 26 at 13:01
add a comment |
How to create a stored procedure in SQL Server which creates dynamic partitions and process?
I have below code which creates a partition every time, and does process at one time in liked server.
Using below code I would like to create dynamic multiple partitions and process by passing partition name and fiscal period id to the procedure dynamically.
Please suggest.
declare @xmla varchar(max) = '
"createOrReplace":
"object":
"database": "FlashArchive",
"table": "FORECAST_FLASH",
"partition": "FORECAST_FLASH_368"
,
"partition":
"name": "FORECAST_FLASH_368",
"source":
"query": "select * from FORECAST_FLASH_ARCHIVE_V where fiscal_period_id=368",
"dataSource": "itv.world"
';
EXEC (@xmla) AT SSAS;
declare @xmlap varchar(max) = '
"refresh":
"type": "automatic",
"objects": [
"database": "FlashArchive",
"table": "FORECAST_FLASH",
"partition": "FORECAST_FLASH_368"
]
';
exec (@xmlap) at SSAS;
How to create a stored procedure in SQL Server which creates dynamic partitions and process?
I have below code which creates a partition every time, and does process at one time in liked server.
Using below code I would like to create dynamic multiple partitions and process by passing partition name and fiscal period id to the procedure dynamically.
Please suggest.
declare @xmla varchar(max) = '
"createOrReplace":
"object":
"database": "FlashArchive",
"table": "FORECAST_FLASH",
"partition": "FORECAST_FLASH_368"
,
"partition":
"name": "FORECAST_FLASH_368",
"source":
"query": "select * from FORECAST_FLASH_ARCHIVE_V where fiscal_period_id=368",
"dataSource": "itv.world"
';
EXEC (@xmla) AT SSAS;
declare @xmlap varchar(max) = '
"refresh":
"type": "automatic",
"objects": [
"database": "FlashArchive",
"table": "FORECAST_FLASH",
"partition": "FORECAST_FLASH_368"
]
';
exec (@xmlap) at SSAS;
edited Mar 26 at 11:10
marc_s
597k135 gold badges1148 silver badges1284 bronze badges
597k135 gold badges1148 silver badges1284 bronze badges
asked Mar 26 at 10:14
saijsaij
74 bronze badges
74 bronze badges
So basically you want to create a stored proc that takes a fiscal period, which is a number, for example, 368, and creates a partition and refreshes that partition. It would appear that all you need to do is concatenate this number into the correct part of the string. Do you know how to concatenate strings in T-SQL?
– Nick.McDermaid
Mar 26 at 11:30
@Nick.McDermaid I want to pass partition name and fiscal period dynamically to a stored procedure.
– saij
Mar 26 at 11:39
If the fiscal period is368then the partition name is justFORECAST_FLASH_368right? so you only need to pass in the fiscal period. Your first task is to work out how to create a stored prcoedure that takes aVARCHARparameter
– Nick.McDermaid
Mar 26 at 11:49
@Nick.McDermaid I have created stored procedure,which takes VARCHAR parameter.I am unable to find that how to fix above code in procedure and execute in linked server.
– saij
Mar 26 at 11:59
Can you edit your question and post the entire stored procedure. If your parameter name is@FiscalPeriodthen all you have to do is concatenate that to your existing strings. If you are having issues please explain in detail.
– Nick.McDermaid
Mar 26 at 13:01
add a comment |
So basically you want to create a stored proc that takes a fiscal period, which is a number, for example, 368, and creates a partition and refreshes that partition. It would appear that all you need to do is concatenate this number into the correct part of the string. Do you know how to concatenate strings in T-SQL?
– Nick.McDermaid
Mar 26 at 11:30
@Nick.McDermaid I want to pass partition name and fiscal period dynamically to a stored procedure.
– saij
Mar 26 at 11:39
If the fiscal period is368then the partition name is justFORECAST_FLASH_368right? so you only need to pass in the fiscal period. Your first task is to work out how to create a stored prcoedure that takes aVARCHARparameter
– Nick.McDermaid
Mar 26 at 11:49
@Nick.McDermaid I have created stored procedure,which takes VARCHAR parameter.I am unable to find that how to fix above code in procedure and execute in linked server.
– saij
Mar 26 at 11:59
Can you edit your question and post the entire stored procedure. If your parameter name is@FiscalPeriodthen all you have to do is concatenate that to your existing strings. If you are having issues please explain in detail.
– Nick.McDermaid
Mar 26 at 13:01
So basically you want to create a stored proc that takes a fiscal period, which is a number, for example, 368, and creates a partition and refreshes that partition. It would appear that all you need to do is concatenate this number into the correct part of the string. Do you know how to concatenate strings in T-SQL?
– Nick.McDermaid
Mar 26 at 11:30
So basically you want to create a stored proc that takes a fiscal period, which is a number, for example, 368, and creates a partition and refreshes that partition. It would appear that all you need to do is concatenate this number into the correct part of the string. Do you know how to concatenate strings in T-SQL?
– Nick.McDermaid
Mar 26 at 11:30
@Nick.McDermaid I want to pass partition name and fiscal period dynamically to a stored procedure.
– saij
Mar 26 at 11:39
@Nick.McDermaid I want to pass partition name and fiscal period dynamically to a stored procedure.
– saij
Mar 26 at 11:39
If the fiscal period is
368 then the partition name is just FORECAST_FLASH_368 right? so you only need to pass in the fiscal period. Your first task is to work out how to create a stored prcoedure that takes a VARCHAR parameter– Nick.McDermaid
Mar 26 at 11:49
If the fiscal period is
368 then the partition name is just FORECAST_FLASH_368 right? so you only need to pass in the fiscal period. Your first task is to work out how to create a stored prcoedure that takes a VARCHAR parameter– Nick.McDermaid
Mar 26 at 11:49
@Nick.McDermaid I have created stored procedure,which takes VARCHAR parameter.I am unable to find that how to fix above code in procedure and execute in linked server.
– saij
Mar 26 at 11:59
@Nick.McDermaid I have created stored procedure,which takes VARCHAR parameter.I am unable to find that how to fix above code in procedure and execute in linked server.
– saij
Mar 26 at 11:59
Can you edit your question and post the entire stored procedure. If your parameter name is
@FiscalPeriod then all you have to do is concatenate that to your existing strings. If you are having issues please explain in detail.– Nick.McDermaid
Mar 26 at 13:01
Can you edit your question and post the entire stored procedure. If your parameter name is
@FiscalPeriod then all you have to do is concatenate that to your existing strings. If you are having issues please explain in detail.– Nick.McDermaid
Mar 26 at 13:01
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55354588%2fhow-to-create-a-stored-procedure-in-sql-server-which-creates-dynamic-partitions%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55354588%2fhow-to-create-a-stored-procedure-in-sql-server-which-creates-dynamic-partitions%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
So basically you want to create a stored proc that takes a fiscal period, which is a number, for example, 368, and creates a partition and refreshes that partition. It would appear that all you need to do is concatenate this number into the correct part of the string. Do you know how to concatenate strings in T-SQL?
– Nick.McDermaid
Mar 26 at 11:30
@Nick.McDermaid I want to pass partition name and fiscal period dynamically to a stored procedure.
– saij
Mar 26 at 11:39
If the fiscal period is
368then the partition name is justFORECAST_FLASH_368right? so you only need to pass in the fiscal period. Your first task is to work out how to create a stored prcoedure that takes aVARCHARparameter– Nick.McDermaid
Mar 26 at 11:49
@Nick.McDermaid I have created stored procedure,which takes VARCHAR parameter.I am unable to find that how to fix above code in procedure and execute in linked server.
– saij
Mar 26 at 11:59
Can you edit your question and post the entire stored procedure. If your parameter name is
@FiscalPeriodthen all you have to do is concatenate that to your existing strings. If you are having issues please explain in detail.– Nick.McDermaid
Mar 26 at 13:01