Viewing 15 posts - 16 through 30 (of 35 total)
I got it working.
The proc uses dynamic sql based on parameter values from the report. SQL gets stored in a variable and then that sql is executed.
I modified the...
April 10, 2013 at 8:10 am
Got it... Added:
AND bh.Server NOT IN
(SELECTrel.Server
FROMReportExclusionList rel
WHEREbh.Server = rel.Server
ANDbh.database_name = rel.DatabaseName)
AND bh.database_name NOT IN
(SELECTrel.Server
FROMReportExclusionList rel
WHEREbh.Server = rel.Server
ANDbh.database_name = rel.DatabaseName)
Works as...
March 20, 2013 at 7:45 am
The issue with that is the passwords. There are about 250 users using SQL auth.
This db is used for an internal app and there's no way the app can...
January 31, 2013 at 4:14 am
That did the trick.
Thank you very much.
October 26, 2012 at 2:42 pm
When you mention collation, what was it set to?
June 14, 2012 at 8:50 am
Right.
Create Partition on existing data:
1. Created a partition scheme and function.
2. Created OrdersNew table with Clustered index on OrderDate and OrderID and placed both on partition scheme.
3. ...
June 13, 2012 at 7:55 am
It looks like I can't partition an existing table that has any indexes with more than one column defined for it...
If I need to do this then I would have...
June 13, 2012 at 6:31 am
Sorry maybe I should have elaborated...
The actual table is 800 million + rows...
The example is just a made up table for simplicity...
I am curious as to how to get around...
June 12, 2012 at 1:31 pm
Thanks guys.
I have verified that both servers are using ENGLISH as the default language.
May 24, 2012 at 6:30 am
I think I may have just figured it out...
I need to add the badgekey to the join clause:
SELECT AA.* FROM BADGELINK_ACCESS_ADDED AA
LEFT JOIN BADGELINK_ACCESS_REMOVED AR
ON (AA.ACCLVLID = AR.ACCLVLID
AND AA.BADGEKEY =...
January 31, 2012 at 2:09 pm
Right. The catch 22 was that I could bring up the server in 'maintenance mode' but as soon as I start SSMS the resource db is accessed which of...
May 26, 2009 at 8:02 am
OK. Finally solved it...
Numerous posts explain that you can bring up the server with the 'f' switch. What this does is only brings up master database and the...
May 24, 2009 at 2:52 pm
Here's my current setup:
torsqla01n1 - active node
torsqla01n2 - passive node
DB instance name - sqla17n1
virtual name - sqla17
How should I connect to this guy in Studio Manager?
I assume it is TORSQLA01N1\SQLA17
Right...
April 11, 2008 at 12:51 pm
Viewing 15 posts - 16 through 30 (of 35 total)