Viewing 15 posts - 6,136 through 6,150 (of 7,191 total)
Do you have a backup of your database? If so, start by backing up your transaction log now and then restore the database to a different location and apply...
January 24, 2008 at 3:20 am
Yes, we can help. But we'd rather you attempted it yourself. We can't do all your debugging for you. You need to understand what the code does,...
January 24, 2008 at 2:56 am
Please don't post the same question twice. It wastes your time and ours. Answered here:
http://www.sqlservercentral.com/Forums/Topic446786-146-1.aspx#bm446789
John
January 24, 2008 at 2:44 am
I'm sorry, but this doesn't make any sense to me. Please will you post your table structure in the form of a CREATE TABLE statement, and some sample data...
January 17, 2008 at 8:56 am
Can you show us what you've tried, and then maybe we can point out where you're going wrong? Otherwise it's too much like we're doing all the work for...
January 17, 2008 at 8:46 am
Be warned that if you change the collation of the database so that it is different from the rest of the server, and your application uses temp tables, you could...
January 15, 2008 at 8:43 am
OK, I'll take your word for that, since I never tried it in SQL Server 2005, and the option isn't available in SQL Server 2000. You still have to...
January 15, 2008 at 7:41 am
Steve
I back up my database to disk, then I restore to a different location using WITH MOVE. That would work, wouldn't it, and with no manual copying of files?
John
January 15, 2008 at 7:39 am
Backup and restore may not be the fastest option (although if you have very large database files with very little data in then there won't be much in it) but...
January 15, 2008 at 7:29 am
(1) This gives the total size of the database files, including free space within those files
(2) This gives the sizes of the individual database files, including free space
(3) The size...
January 15, 2008 at 6:40 am
I think dynamic SQL is your only option to get round this somewhat dubious database design. Something like this:
DECLARE @sql varchar(1000)
SELECT @sql = 'SELECT * FROM ' + TableName
FROM...
January 14, 2008 at 9:28 am
Try SELECT @StartTime = GETDATE(). You should declare @StartTime and @StopTime as datetime rather than varchar.
John
January 14, 2008 at 9:14 am
Ram
Absolutely. I'm not preaching the supremacy of any language. But if you don't express yourself clearly in the language in which you have chosen, for whatever reason, to...
January 11, 2008 at 9:11 am
Ram (1/11/2008)
I wouldn't worry as long as the subject matter is conveyed to the other end in any form.
But if you don't express yourself clearly, then how can you be...
January 11, 2008 at 8:46 am
Viewing 15 posts - 6,136 through 6,150 (of 7,191 total)