Viewing 13 posts - 61 through 73 (of 73 total)
COOL 🙂
There are lot of date format in sql server. Use "CONVERT" function for neccssary data format.
And also ref this URL:
March 2, 2010 at 11:05 pm
Hi Timothy,
Normalization and decoupling are one and the same?
March 2, 2010 at 2:54 am
Change the datatype as datetime instead of int and then check.
March 2, 2010 at 2:20 am
Can you check the Event Viewer, what it says?
February 25, 2010 at 9:29 pm
February 15, 2010 at 2:10 am
Try some thing like this....
DECLARE @Cnt int
DECLARE @CASCADELevel TABLE
(
AID INT,
ADESC nvarchar(max),
BID INT,
BDESC nvarchar(max),
CID INT,
CDESC nvarchar(max),
DID INT,
DDESC nvarchar(max)
)
;WITH CTEDELETE (AID,ADESC,BID,BDESC,CID,CDESC,DID,DDESC,Level)
AS
(
SELECT
A.A_ID AS AID,
A.[DESC] AS ADESC,
B.B_ID AS BID,
B.[DESC] AS BDESC,
C.C_ID AS CID,
C.[DESC]...
February 15, 2010 at 12:58 am
Good Question. Thanks...
But, can you tell me how to delete the "@Sql_str" string value without restarting the sql services?
February 5, 2010 at 3:13 am
Thanks Gail ...
Please elobrate more on Index Scan Properties. 🙂
February 5, 2010 at 12:36 am
Yes, you are correct. It would be better if you are going to delete like E,D,C,B and then A.
January 28, 2010 at 9:27 pm
homebrew01 (11/24/2009)
Make 10 stored procedures, then control & schedule through SQL.
ohh ... yes, that makes good... 🙂
November 24, 2009 at 10:39 am
Bru Medishetty (11/24/2009)
Pardon my ignorance, can I know why you need to run multiple .sql files from script?
Thanks for your reply.
There are 10 different part of script for 10 issues....
November 24, 2009 at 10:08 am
GilaMonster (11/23/2009)
ALTER TABLE <Table Name>
ALTER COLUMN <Column Name> <New type information>
See Books Online for full details. Look under ALTER TABLE
Thanks for your reply.
I think i believe,it will through...
November 23, 2009 at 8:59 am
Viewing 13 posts - 61 through 73 (of 73 total)