Viewing 15 posts - 691 through 705 (of 1,065 total)
A SPID blocking itself is actually SQL Server's way of showing that a SPID is waiting for I/O to complete... these never used to be shown in sysprocesses/sp_who2 until SP3...
September 17, 2008 at 3:17 am
Using JOIN is considered better for reasons of standardisation and readability, not performance. For a simple query like yours, you will see no difference in the query plans.
Using JOIN is...
September 17, 2008 at 1:47 am
Sounds like the old problem where space release by deleted/modified image or text columns isn't released.
Have a look at this KB article http://support.microsoft.com/kb/324432
September 16, 2008 at 6:27 am
It might be worth running perfmon to see what your I/O speeds are.
My previous experience with index defrags were that they just ran nicely in the background without interfering with...
September 16, 2008 at 2:11 am
Executed as user: [domain\username]. Arithmetic overflow for data type smallint, value = 48490. [SQLSTATE 22003] [Error 220]. The step failed.
Your job is trying to store the value 48490 in a...
September 16, 2008 at 1:53 am
More than 1 way to do it, but I find the easiest to write is:-
SELECT getdate() - 0.5
This subtracts half a day from the current date
September 16, 2008 at 1:23 am
Have a look at the date on those 2 missing records... I suspect there will be a time portion to the date.
In SQL Server, if you don't specify the time...
September 16, 2008 at 1:21 am
What resolved our problem was to add a SessTimeout setting with the DWORD value as 360 to the Win 2003 or Win2K registry on the SQL servers that the backups...
September 15, 2008 at 8:49 am
You should find it in the :SQL statistics object
September 15, 2008 at 7:19 am
As per BOL:-
Right-click the database you want to use as your primary database in the log shipping configuration, and then click Properties.
Under Select a page, click Transaction Log Shipping.
Clear the...
September 15, 2008 at 1:50 am
The backup will as at the END of the backup (SQL Server actually appends to the backup file, any changes made since the start of the backup).
September 11, 2008 at 8:31 am
I believe the ability to do this is limited to the Enterprise Version of Visio
September 11, 2008 at 4:47 am
select substring(name,1,charindex(',',name,1))
I think this is what you meant?
No, I meant what I posted.
charindex(',',name) will give you the position of the comma, and the -1 backs it up by one...
September 10, 2008 at 3:17 pm
CHARINDEX is what you are after:-
select substring(name,1,charindex(',',name)-1)
September 10, 2008 at 8:47 am
Switching compatibility does nothing more than restrict/enable the ability to use certain TSQL enhancements added in SQL2005.
September 10, 2008 at 8:16 am
Viewing 15 posts - 691 through 705 (of 1,065 total)