Viewing 15 posts - 511 through 525 (of 1,186 total)
Just for giggles...... Did you call the Garbage man to clean-up the trash heap?
For those who don't get the reference (Oddly I get this a lot) "Trash heap" was the...
March 3, 2005 at 5:39 am
Just to add to what David has stated (and does well always), depending on the SIZE of the data and the available memory to SQL will also depend on IF...
March 3, 2005 at 5:36 am
I guess your only recourse would be. Send the SELECT statement to a #TEMP table, gather the MAX(LEN) of all the various columns, build another #TEMP table using DYNAMIC SQL...
March 2, 2005 at 4:45 pm
1. I wonder if your account is being spoofed when connected via VPN. Try creating a VB app that will pop a message with Environ$("USERNAME") that you run from home...
March 2, 2005 at 6:12 am
Monty,
You will need to write a custom function to properly format the string. I think this is because of the various different money formats throughout the world. Some sep...
March 2, 2005 at 6:09 am
If you view the results in QA using the GRID option (Menu bar Query > Results in Grid) OR CTRL+D this will show you just space used
OR
You can CAST/CONVERT the...
March 2, 2005 at 6:01 am
Have any changes/upgrades been performed on your Exchange server?
March 1, 2005 at 10:23 am
1. IF @Enddate > getdate should be > GetDate()
2. I don't think you can call GetDate() from inside a UDF
Try and pass in GETDATE() as a 2nd Variable as in...
February 28, 2005 at 6:28 am
According to the Query Plan (From toolbar in QA select Query.. Show Execution Plan) Query 1 is more efficient (doesn't perform a TOP).
However, the TOP cost is 0% it is...
February 28, 2005 at 6:02 am
NT scheduler would be painful because you would need to create a schedule for every 10 minute interval OR
approx 120 - 130 schedules per task...... (you cannot schedule other than...
February 25, 2005 at 3:36 pm
With scheduler you can run it multi. times daily on the schedule tab check show multi. schedules. Of course this is very painful ....
February 25, 2005 at 10:34 am
Do you have the database open in EM? Try closing EM and ensure that no one else is attempting to access the same DB
When attempting the restore via QA make...
February 24, 2005 at 1:06 pm
Please avoid multiple posts..
See comments http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=163854
February 24, 2005 at 1:05 pm
I would research performing a loop with sysojects where the objects are "owned" by the non-existent userid. This way you could set-up dynamic SQL ...
February 24, 2005 at 1:03 pm
I think the problem is now you are trying to login with TRUSTED AUTHENTICATION but your server isn't configured for it. Check the linked server (under security) and check to...
February 15, 2005 at 4:27 pm
Viewing 15 posts - 511 through 525 (of 1,186 total)