Viewing 15 posts - 226 through 240 (of 253 total)
I think a little more information is probably needed. I personally don't know if 400 active connections is a problem but I would guess it wouldn't be so long as...
August 26, 2004 at 1:46 pm
I believe you are basically after the following. If you have a limited number of colors you can avoid the #temp table and dynamic SQL version and require only the...
August 25, 2004 at 5:54 pm
I'm affraid I can't see your hard drive. Mind fixing your link to point to a public site or posting a text version of it? Rename "Error.jpg" on your desktop (and...
August 25, 2004 at 11:41 am
We use SQL Server authentication here so I can't really help you out anymore. Could another reader please feel free to jump in?
The only suggestion I would have would be...
August 25, 2004 at 9:51 am
As I layed in bed this morning not wanting to get up I came up with the following. Note that this involves maintaining individual connections for each user for the...
August 25, 2004 at 5:49 am
By my understanding if you wish to track comprehensive actions taken by the user within SQL Profiler then you simply need seperate logins. If you follow Thorek's route and add...
August 24, 2004 at 3:28 pm
I'm thinking the error at step 3 was a result of the following snippet I pulled from the SQL Server Books Online for sp_addlinkedsrvlogin:
true for useself is invalid for a Windows...
August 24, 2004 at 2:47 pm
I think it is complaining about the table name being a variable. I've always used dynamic SQL with this sort of thing.
exec( 'GRANT EXECUTE ON ' + @storedprocname + '...
August 24, 2004 at 2:30 pm
If the above is really your setup then a simple while loop is all you are after. We created the following function to do exactly that. Given a comma delimeted...
August 24, 2004 at 2:16 pm
_WA_Sys_ are for statistics which apparently need to be stored in sysindexes, but aren't actually indexes. The Internet claims there are books online to explain it although I haven't looked....
August 24, 2004 at 6:46 am
I haven't tried this in the job context, but I've noticed in our VB world that if I call SP 1 that performs an exec on SP 2 that internally...
August 24, 2004 at 6:26 am
If you CAN tollerate dynamic SQL the following should do it. Unfortunately it uses a true temp table as well since it has to survive the scope change into the...
August 20, 2004 at 1:53 pm
You should probably review and watch:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=23&messageid=132614
FYI, my original first post started out asking if the columns were fairly consistent or highly variable but that got dumped on me and...
August 20, 2004 at 1:13 pm
SELECT P.Period, d1.VariableLabel, IsNull(dbo.GetUsedValue(P.BusinessPeriodID, D1.CalculationVariableID), '') as value FROM VW_LMS_BusinessPeriods AS P |
August 20, 2004 at 11:56 am
Viewing 15 posts - 226 through 240 (of 253 total)