Viewing 15 posts - 16 through 30 (of 222 total)
as mentioned by mister.magoo, your server collation is different to database collation. tempdb uses server collation. have a look at the collation in db properties.
February 2, 2011 at 6:12 pm
the problem here looks like that @data variable is not in the scope when you execute @Cmd. you need to declare @data like
declare @Cmd varchar(max);
set @cmd...
November 24, 2010 at 10:23 pm
i dont remember exactly it was for 2005 or 2008, but if you are having scripting objects, you need to recompile the scripts on x64 machine if its developed on...
November 23, 2010 at 10:42 pm
hydbadrose (11/23/2010)
I tried that as well and I got the same arithmetic error.
can you please post the error message as it is working fine for me. I am running it...
November 23, 2010 at 10:25 pm
How about this:
SELECT j.name JobName,h.step_name StepName,
CONVERT(CHAR(10), CAST(STR(h.run_date,8, 0) AS dateTIME), 111) RunDate,
STUFF(STUFF(RIGHT('000000' + CAST ( h.run_time AS VARCHAR(6 ) ) ,6),5,0,':'),3,0,':') RunTime,
h.run_duration StepDuration,
case h.run_status when 0 then...
November 23, 2010 at 7:43 pm
Akkare (10/27/2010)
I need help for the below
Have 2 node sql cluster.what is the procedure to apply service packs and other updates on sql.
Kindly explain detail.Also explain applying SPs for...
October 27, 2010 at 6:29 pm
merlin2864 (10/26/2010)
October 26, 2010 at 11:17 pm
why don't you script them out, drop it and recreate it with new names
October 12, 2010 at 10:56 pm
Paul,
In the part1, you have mentioned about SELonJN operation, how it can be enabled?
It will be really handly if you'll also post the changes you made to the indexes or...
September 7, 2010 at 8:28 pm
even i faced the same problem but mine OS was win 2008 r2. what i did was cancel the current installation process and restart it and it worked.
August 18, 2010 at 11:19 pm
how about you script all the objects and run a script (powershell or vb or any other language) to change the schema. we used to change the servername and databasename...
August 18, 2010 at 10:40 pm
even i think it shouldnt be a problem but if any message or alert comes that any file is being shared, don't remove it.
August 18, 2010 at 10:32 pm
best will be to write your own script to get the subset of the data. you can populate the parent tables first and then keep on moving down the heirarchy...
August 18, 2010 at 10:27 pm
i agree with Jerry, i have also experienced similar problems. The Ideal way is to uninstall and re-install the SQL Server
August 18, 2010 at 10:23 pm
Viewing 15 posts - 16 through 30 (of 222 total)