Viewing 15 posts - 4,621 through 4,635 (of 6,400 total)
Can you provide table deffinition and sample data and your query?
June 13, 2012 at 8:41 am
You could build the data up including a row_number function adding 5 so that it starts from 6 and ends at 905.
INSERT INTO
sometable
SELECT
ROW_NUMBER() OVER(ORDER BY intcoloumn ) +...
June 13, 2012 at 8:32 am
If the procedure generates an output then it will usually be stored in the job history, if not unless you have some custom logging on the tables then I dont...
June 13, 2012 at 8:30 am
1 - could you just not set the accounts to never expire, that way the passwords never need changing?
2 - use something like impersonation where a user clicks the link...
June 13, 2012 at 8:23 am
Think this should work, but not tried it for a data source but.....
Grab a copy of RSScriptor, use it to script out the rds and then import it into your...
June 13, 2012 at 7:50 am
It wont help as you wont be able to query the data in any of the objects as SQL issues a unique number to the end of a temp table...
June 13, 2012 at 7:39 am
What is the starting point for the conversions, is it today, tomorrow, next week? We need this especially for leap years as the last example may span 2 or...
June 13, 2012 at 7:34 am
Daxesh Patel (6/13/2012)
I would create New table ahead of time with partitions...
June 13, 2012 at 7:30 am
Is that for the DB or the table?
June 13, 2012 at 7:28 am
If you need authentication for users outside of your domain you have 4 options,
1 - grant each user outside your domain, their own individual domain account
2 - publish 1...
June 13, 2012 at 7:24 am
On Change : Prevent policies create triggers so your not doing anything different as to what you where trying to do in the first place, its just it doesn't look...
June 13, 2012 at 7:11 am
If possible use a where clause to limit the data instead of copying 9 million rows
Pre-allocate the storage space required so SQL doesnt need to grow the files
June 13, 2012 at 7:07 am
I would say you will need to create a custom DDL trigger which rolls back the change if they try to create an object in a schema which is not...
June 13, 2012 at 6:53 am
Then it looks like you have created two object with the same name, which will break the unique key.
You first need to create your multipart identifier condition.
Then create the policy...
June 13, 2012 at 6:17 am
knocking up some sample data and results query, I believe this will do the trick
declare @weeks table (weekid int identity, weekstartdate date)
insert into @weeks values ('2012-06-02')
declare @x int = 1,...
June 13, 2012 at 5:55 am
Viewing 15 posts - 4,621 through 4,635 (of 6,400 total)