Viewing 15 posts - 6,436 through 6,450 (of 7,191 total)
Job y must be pretty important if it's worth trashing a backup for! Have you done any investigation into why your backup sometimes takes 30 minutes and sometimes 2 hours? ...
May 9, 2007 at 9:46 am
Pavan
This page from Books Online should get you started:
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/c001c2e7-d092-43d4-8fa6-693b3ec4c3ea.htm
I'm a bit concerned, though, that if the user who creates the procedure doesn't have access to the objects in the stored...
May 9, 2007 at 9:12 am
You've posted in the SQL 2005 forum... please confirm that you are using SQL Server 2005.
Thanks
John
May 9, 2007 at 9:05 am
What does job x do? Bear in mind that if you want it to stop, you will probably want it to roll back as well... which could easily take longer...
May 9, 2007 at 8:59 am
David
Create a junction table that references the cases and the business units tables:
tblBUCap
---------
capID
buID
IsPrimary
John
May 8, 2007 at 9:17 am
Anchelin
I would recommend reviewing your database design and normalising it if possible. If that isn't an option, the PIVOT function is described in Books Online:
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/36b19e68-94f6-4539-aeb1-79f5312e4263.htm
I've never used it myself, but...
April 24, 2007 at 4:46 am
Apologies. I started typing my reply before you added that requirement.
April 23, 2007 at 9:00 am
Slightly more long-winded than the original, but it seems to work:
DECLARE @i int
select @i = count(*)
from orders
where CustomerID = 'VINET' and EmployeeID = 10
group by customerid
SELECT COALESCE(@i, 0)...
April 23, 2007 at 8:49 am
Anchelin
Two questions:
(1) Have you read about the PIVOT function?
(2) You say that you have the "resultset" that you gave, but is that the result of a query other than SELECT...
April 23, 2007 at 8:11 am
I applaud the author's efforts to write in a language that isn't his mother tongue. It's come out far more clearly than I would have managed had I been attempting...
April 5, 2007 at 7:42 am
You need to purchase licences for as many processors as the operating system has access to. So one option is to disable one or more processors in the BIOS.
John
April 4, 2007 at 8:33 am
Did you try what the error message suggested? What happens if you try to map a drive on the import machine to \\EXPORT\admin$, where EXPORT is the name of...
April 4, 2007 at 7:23 am
Charles
(1) The user list is defined by the DBA by adding all Windows users and groups that need access to resources on the SQL Server as logins in SQL Server. ...
April 4, 2007 at 3:27 am
Deb
Can't you just count the extents and multiply by 8? I take it it's only an approximation you're after?
John
March 28, 2007 at 9:44 am
Mick
Books Online tells you the names of the columns. They're TABLE_NAME and COLUMN_NAME.
John
March 28, 2007 at 8:00 am
Viewing 15 posts - 6,436 through 6,450 (of 7,191 total)