Viewing 15 posts - 121 through 135 (of 245 total)
June 8, 2009 at 2:47 am
Views wont fail.........
Views are a useful tool to have in your database tool arsenal. More portable than functions, more flexible than stored procedures, view can give your database more secure,...
June 8, 2009 at 2:38 am
Shrink the file.
--
--Backup log
BACKUP LOG [DB_TEST] TO DISK = N'C:\BackupLS\DB_TEST_log_022709.trn' WITH NOFORMAT, NOINIT, NAME = N'DB_TEST-Transaction Log Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10
--If needed issue...
June 8, 2009 at 2:30 am
You have taken the right step by joining SQLSERVERCENTRAL.COM
Now that you are in the right hands stick with us.
Find the attached you might find it useful.
June 8, 2009 at 2:24 am
Check out:
http://www.sqlservercentral.com/Forums/Topic429161-291-1.aspx
http://www.sqlservercentral.com/Forums/Topic429161-291-2.aspx
http://social.msdn.microsoft.com/forums/en-US/sqlreplication/thread/ffcfa9d2-d295-404c-be78-02a0138798e3/[/url]
http://social.msdn.microsoft.com/Forums/en-US/sqlreplication/thread/e0fbaec7-fcb1-4860-9377-34dcd8e3db9f/[/url]
June 5, 2009 at 4:38 am
Check out:
http://msdn.microsoft.com/en-us/library/aa238420(SQL.80).aspx
http://msdn.microsoft.com/en-us/library/aa238405(SQL.80).aspx
If there are 2 data file and 2 log file its not an issue
The extra files will be created when you restore the database.
June 5, 2009 at 4:37 am
You can give permissions as you would on a normal SP, IE use GRANT EXECUTE (look up http://msdn.microsoft.com/en-us/library/aa260689(SQL.80).aspx).
xp_cmdshell is a touchy subject. You do need to be very careful when...
June 5, 2009 at 4:30 am
Jamie Batiste (6/4/2009)
ALTER TABLE [DB].DBO.[TableName] ADD CONSTRAINT [PK_TableName] PRIMARY KEY CLUSTERED (Field1, Field2)
why give "CLUSTERED" in your alter command .
when you add a primary key it always creates clustered index.
To...
June 5, 2009 at 3:00 am
Please give the table structure and the query that is used to get the detail of the tenant and product.
June 5, 2009 at 2:39 am
when you script out the jobs see to it that your tsql job steps dont have "GO" batch breaker.
If its there the script will give error while executing.
It...
June 5, 2009 at 2:28 am
Thanks a lot for the script........
Is "sys.sql_modules" the alternative for "sysdepends" .
June 4, 2009 at 12:45 am
When ever I perform dbcc shrinkfile after transactional log backup in full recovery it didnt shrink my log file.
When i started issuing checkpoint after performing transactional log backup in...
June 4, 2009 at 12:35 am
Viewing 15 posts - 121 through 135 (of 245 total)