Viewing 15 posts - 391 through 405 (of 1,109 total)
NO_LOG and TRUNCATE_ONLY are the same, and you do not want to use either of these (unless you do not care about recovery).
These options will truncate your log, and...
March 3, 2008 at 6:57 am
richard wilkinson (3/3/2008)
March 3, 2008 at 6:40 am
I'm curious about some of the conditions, like
RecordedCalls.CallDate BETWEEN cast('01 Jan 1910 00:00:00:000' as datetime)
...
March 3, 2008 at 2:04 am
Tommy Bollhofer (2/29/2008)
If installed prior to 02/29, any ideas wether or not services will come back online after 03/01 or are we looking at a reinstall?
One of my installations was...
February 29, 2008 at 10:19 am
Steve Jones - Editor (2/29/2008)
===
We have recently discovered an issue with SQL Server 2008 CTPs that result
in SQL Server 2008 not...
February 29, 2008 at 10:10 am
Michal Mokros (2/27/2008)
Is it possible to do some action (or to be informed somehow) when new reference to specific table is added? For example I have database with 500 tables...
February 29, 2008 at 3:06 am
Grant is right. One thing that helps is if you visualize your indexes a bit.
The leaf pages of clustered indexes will contain the full row data, the leaf pages of...
February 28, 2008 at 8:26 am
deepa (2/28/2008)
On SQL Server 2000 and 2005 you can play with the file permissions only.
If you can change the user, then you could control the permissions via the "BACKUP...
February 28, 2008 at 7:50 am
deepa (2/28/2008)
where database server is different from web server and
per database/security...
February 28, 2008 at 4:49 am
niranjankumar_k (2/28/2008)
Without droping this table , anyother way just to mention in right order for new column ?
Unfortunately John is right, rebuilding your table is the only alternative. However, I...
February 28, 2008 at 2:52 am
Sugesh Kumar (2/27/2008)
February 28, 2008 at 1:43 am
count returns a single result per group. If you do not use group by then there is only one rowgroup. So in your query there is one count and one...
February 28, 2008 at 1:35 am
Sandy (2/27/2008)
I have a quick question for you,
If you are using more than one Stored procedure, then how can you handle the transaction process,
Ex: -
SP -1
(
Begin Tran...
February 27, 2008 at 7:22 am
amit (2/27/2008)
Hi Andras,Thanks for your reply.
But can I store the result in a variable.
Thanks.
Amit
You could use a table variable and then get the result out of it like
CREATE PROC uspGetEmpDetail
AS...
February 27, 2008 at 7:16 am
Alternatively, if you cannot rewrite it as a function, you can insert the result into a temporary table, like (without any error handling, ...)
CREATE PROC uspGetEmpDetail
AS
...
February 27, 2008 at 4:47 am
Viewing 15 posts - 391 through 405 (of 1,109 total)