Viewing 15 posts - 586 through 600 (of 860 total)
karan457 (3/11/2009)
Hi i need to deploy my final database from staging server to productionHow to deploy database in production server
The fastest operation is to detach it and attach...
March 11, 2009 at 5:16 am
Erode P. Satheesh (3/9/2009)
March 9, 2009 at 9:21 pm
SELECT * from sys.syslogins WHERE dbname='yourdbname'
March 9, 2009 at 8:38 pm
AS suggested varchar(max) is your best choice for large data types, nvarchar(max) if you are willing to use any national/unicode characters.
March 9, 2009 at 8:07 pm
Is your default trace enabled?
check out this beginner's guide to default trace:
http://www.sqlservercentral.com/articles/SQL+Server+2005/64547/
March 9, 2009 at 11:04 am
Transaction log backups does not disrupt Full backup process. You can definitely issue tlog backups.
But the question is, Why do you have to take Tlog backups immediately after a...
March 9, 2009 at 10:58 am
Yes as suggested Default trace will be right tool, load information into a table as it traces the events. You can look at: fn_trace_gettable function in BOL which extracts event...
March 9, 2009 at 10:52 am
I don't think you can downgrade a database form SQL 2008 to SQL 2005 it's not possible. Probably you could script it out and run it against the 2005 server.
March 9, 2009 at 10:43 am
Yep, found it Paul and voted it. It was my browser playing around with me:D. Thanks a lot!!
March 9, 2009 at 10:27 am
kerusy (3/9/2009)
And are there any free softwares that can...
March 9, 2009 at 9:31 am
CH&HU (3/8/2009)
Dear All,Thanks for your inputs. I tried using WinRAR it worked fine.
Regards,
CH&HU.
How much did it compress to? How long did it take to transfer it over to ur USA...
March 8, 2009 at 10:12 pm
Paul Randal (3/8/2009)
March 8, 2009 at 9:04 pm
Paul Randal (3/8/2009)
It's part of the full-text system, but only in 2005 and before 🙂
haha that's awesome!
But I think this discussion still goes on. You could really include those...
March 8, 2009 at 8:46 pm
Hey Paul,
It was so kind of you to actually get some more views on this in your blog. The one which you blogged as "What's the name of the executable...
March 8, 2009 at 7:56 pm
By default SQL server creates a clustered index on a primary key and a non clustered index on a unique key. As a rule of thumb yes, every table should...
March 8, 2009 at 5:55 pm
Viewing 15 posts - 586 through 600 (of 860 total)