Viewing 15 posts - 17,386 through 17,400 (of 26,489 total)
Try this:
ROUND(Col1 * Col2, 8)
January 19, 2010 at 8:39 am
Krasavita (1/19/2010)
I created store procedure:
BEGIN
SET ROWCOUNT 1000000;
...
January 19, 2010 at 7:17 am
itsmeman (1/18/2010)
January 18, 2010 at 6:59 pm
Ninja's_RGR'us (1/18/2010)
How many rows will be left after the delete? Sometimes it's just faster to figure out...
January 18, 2010 at 2:46 pm
Jeff Moden (1/17/2010)
itsmeman (1/5/2010)
This issue is done for now....Two way street here... please explain how this issue is "done for now".
My guess, they ran the update that took 11...
January 17, 2010 at 9:58 pm
I have to agree with Gail again. If you can provide us with more specifics, table DDL (CREATE TABLE statement(s)), sample data (series of INSERT INTO statement(s)) for then...
January 17, 2010 at 8:10 pm
Should have seen this to begin with, here is what you need to do:
Change:
INSERT INTO Files (Dir, FilePath)
(
SELECT('O', filePath) FROM #Temp
)
To:
INSERT INTO Files(Dir, FilePath)
SELECT 'O', filePath FROM #Temp;
January 16, 2010 at 10:28 pm
What is the exact error message you are getting.
January 16, 2010 at 9:36 pm
ragie (1/16/2010)
i'm writing a sp where the goal is to get two output parameters: the fileid, and filepath. as you saw from the first post, i...
January 16, 2010 at 9:19 pm
ragie (1/16/2010)
quick question, is it possible to do an INSERT SELECT like this:
INSERT INTO Files (Dir, filePath)
SELECT('O', filePath) FROM #Temp
it's...
January 16, 2010 at 7:45 pm
Jeffrey Williams-493691 (1/15/2010)
Lynn Pettis (1/15/2010)
Ready to smack yourself on the forehead??
SET @start_dt = (SELECT dateadd(hh, 19, dateadd(day,datediff(day,0,GetDate())- 9,0)))
SET @end_dt = (SELECT dateadd(hh, 19, dateadd(day,datediff(day,0,GetDate())- 2,0)))
And, just to make things a...
January 15, 2010 at 3:21 pm
backup data base MyDB to disk = N'MyDB.bak'; -- remove space between data and base, only way to get this to post from work
restore database MyDBClone
from disk = N'MyDB.bak'
with...
January 15, 2010 at 2:55 pm
Use RESTORE HEADERONLY, that will tell you what type of backup the native backup file contains.
January 15, 2010 at 2:11 pm
Not really, your only choice is to run DBCC CHECKDB with repair_allow_data_loss option. The optimum solution would have been to restore from a previous database backup prior to the...
January 15, 2010 at 1:59 pm
So you are saying that you have no previous backups made before getting this CHECKDB error, correct?
January 15, 2010 at 1:42 pm
Viewing 15 posts - 17,386 through 17,400 (of 26,489 total)