Viewing 15 posts - 4,621 through 4,635 (of 6,395 total)
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
http://www.sqlservercentral.com/Forums/Topic805464-6-1.aspx
The above URL details how to setup annoymous authentication in SSRS 2008, other than that you will need to go down the custom authentication route and call the reportviewer.aspx control...
June 13, 2012 at 5:40 am
Duran (6/13/2012)
June 13, 2012 at 5:30 am
Duran (6/13/2012)
June 13, 2012 at 5:18 am
You will need to drop and rebuild all indexes, primary keys etc to enforce the new collation.
Or you could add COLLATE database_default to then end of any string comparisions
SELECT TOP...
June 13, 2012 at 4:39 am
Viewing 15 posts - 4,621 through 4,635 (of 6,395 total)