Viewing 15 posts - 16 through 30 (of 32 total)
abivenkat (4/19/2012)
thanks for the reply first of all...
i have to group by all the columns such as CompanyName, CompanyContactNumber etc., except the DB_Name where more than one company can...
April 20, 2012 at 7:51 am
I guessed on this one. I've not experienced this error before.
April 20, 2012 at 7:22 am
Thomas Abraham (4/16/2012)
Thank you for the question. I thought the question was straightforward, but then it's Monday.
I figured what was being asked, no confusion here either...
April 16, 2012 at 8:54 am
I'd suggest rebuilding the indexes in batches maybe doing the largest ones individually and the smaller ones all together.
April 2, 2012 at 12:45 pm
Yeah what is Subdate data type?
If its datetime keep it as datetime in the WHERE clause...
March 30, 2012 at 10:00 am
I like the 2012 questions. I'm learning lots. Thanks.
March 29, 2012 at 7:59 am
John Mitchell-245523 (3/21/2012)
GuruGPrasad (3/21/2012)
select val.day,SUM(V.data) from val V join val Val on V.day<=val.day group by val.day,val.day
That'll work well for three rows, but will get more and more inefficient the...
March 21, 2012 at 9:51 am
I have nothing to add as to the cause but I'm going to suggest you not rely on the backup process you described. You can use the Maintenance Plan...
March 19, 2012 at 9:06 am
adonetok (3/16/2012)There is a column [OrderID] (data type is double)
?
March 16, 2012 at 9:07 am
sam.dahl (3/15/2012)
At the end of running the code and after stopping the execution my transaction remains open.
If I then commit the transaction I get the result you described.
However if I...
March 16, 2012 at 6:45 am
ames.f (3/13/2012)
IF @Option = 0
BEGIN
EXEC sp_dboption @DBName, 'trunc. log on chkpt.', 'FALSE'
END
ELSE
BEGIN
EXEC sp_dboption @DBName, 'trunc. log on chkpt.', 'TRUE'
END
The procedure passes in...
March 14, 2012 at 8:20 am
Daniel Bowlin (3/9/2012)
SQLRNNR (3/9/2012)
suppressantappetite
Craving
March 9, 2012 at 11:39 am
I'd do the import again and this time handle the formatting pre-import when you select the xls source. If you use the import/export wizard this can be done quite...
March 9, 2012 at 11:24 am
Viewing 15 posts - 16 through 30 (of 32 total)