Viewing 15 posts - 226 through 240 (of 314 total)
george sibbald (10/4/2010)
no links but we run diskkeeper with SQL up and running, no problems.
Thats how I ran it at one of my previous places... The invisible tasking from the...
October 5, 2010 at 8:45 am
Can you please elaborate as to why Profiler is not appropriate?
October 4, 2010 at 8:55 am
Which version and edition of SQL? 2005 (since its in the 2005 section)? 🙂
October 4, 2010 at 8:06 am
Try this:
DECLARE @sql VARCHAR(MAX)
SELECT
@sql = CASE
WHEN x = 1 THEN 'update...'
WHEN x = 2 THEN 'update...'
END
FROM myTable
EXEC (@SQL)
October 4, 2010 at 2:43 am
interesting article...
And in true SSC fashion the answer is:
"it depends"
😛
October 4, 2010 at 12:52 am
Personally, I have yet to see SQL Server work properly in a virtual environment. It starts off well, but always ends up with too many shared resources and "SQL Server...
October 4, 2010 at 12:14 am
then the response is the same as that thread... no need for a second thread
October 1, 2010 at 5:57 am
szmulder (9/30/2010)
Only enterprise version support this function, too expensive!I think most company only buy standard version that's why most people never have chance to use it.
I think you'd be...
October 1, 2010 at 3:16 am
whats the percentage of records returned by both selects (without the top) with regards to the total number of records in the table?
October 1, 2010 at 3:10 am
Good question, and I eagerly await the answer... got asked the same thing yesterday.
October 1, 2010 at 3:05 am
GilaMonster (1/12/2010)
Yes, we have electricity and internet (most of the time), we...
October 1, 2010 at 1:31 am
I used to get this on my CITRIX client all the time... restart fixed, other than that try pressing the CTRL, ALT and windows shortcut key a couple of times...
October 1, 2010 at 1:22 am
The error sounds like a Kerbeos authentication issue, with regards to delegation and the setting up of correct SPNs.
Can you change the linked server to make the connection as...
October 1, 2010 at 1:14 am
you may need to tone the caffeine intake, who knows what else you will find :hehe:
September 30, 2010 at 8:59 am
ok, 2 options:
run profiler to capture everything thats happening as well as errors
or
specify an output file on SQLCMD using the -o flag Oh and the file location for the output...
September 30, 2010 at 8:57 am
Viewing 15 posts - 226 through 240 (of 314 total)