Viewing 15 posts - 4,531 through 4,545 (of 7,505 total)
the best is to retrieve as least as possible rows and columns using the minimal effort of I/O (and cpu).
Design your objects according to Dr Codds rules,and you'll be fine...
September 14, 2008 at 4:05 am
Is the job owner being granted use of the mail and the mail profile (at sqlserver level ! )
September 13, 2008 at 8:27 am
Sqlchamp (9/12/2008)
sp_help db test gave result test db does not exist.
Again in a nutshell I am trying to automate db and tran log restore via sql job.
I...
September 13, 2008 at 7:13 am
gomikem (9/12/2008)
September 12, 2008 at 10:47 am
I'm sorry, I've overlooked the fact I was using sqlcmd. :blush:
Copy / paste .. you know :ermm:
did you try using the column separator parameter ?
from bol:
http://msdn.microsoft.com/en-us/library/aa214012(SQL.80).aspx
-s col_separator
Specifies the...
September 12, 2008 at 10:32 am
well ... here's what I used...
http://www.winnetmag.com/SQLServer/Article/ArticleID/38042/SQLServer_38042.html
-- how to determin SQLServer Uptime
-- Source: Tracking Uptime by Brian Moran http://www.winnetmag.com/SQLServer/Article/ArticleID/38042/SQLServer_38042.html
--
--
SELECT @@servername as ServerName, datediff(mi, login_time, getdate()) as SQLServer_UpTime_Minutes
FROM sys.dm_exec_sessions
WHERE...
September 12, 2008 at 7:48 am
If you log load isn't that much, you may want to consider making a full backup and use log backups.
Then you can restore the full backup (norecovery) (first...
September 12, 2008 at 7:34 am
Does anyone know what the terminology GDR and QFE means in the bulletin ?
It mentions SQL2000 GDR , SQL2000 QFE, SQL2005 GDR , SQL2005 QFE.
Am I having a weak...
September 12, 2008 at 5:31 am
Gayathri.Varadarajan (9/12/2008)
September 12, 2008 at 5:20 am
Many times, this kind of issue points to the upmost advantage of using surrogate keys (which don't have a symantic payload at all, but their strict value).
Change of...
September 12, 2008 at 3:09 am
That is indeed a valid workaround if this is a singleshot operation (upgrade, bugfix,...)
September 12, 2008 at 2:46 am
If you want datetime info, your best choice is a column of the datetime data type !
You'll get a bunch of datetime functions to surve you !
Rule number 3:...
September 12, 2008 at 1:02 am
Gayathri.Varadarajan (9/12/2008)
...The on update cascade is not a preferred option.....
Then don't update PKs !
If you have FKs pointing to that parent table (I sure hop so), and you realy need...
September 12, 2008 at 12:47 am
Isn't this one in Steves build list ? http://www.sqlservercentral.com/articles/Administration/2960/
September 12, 2008 at 12:43 am
did the "restore database" step succeed ?
(what's it output)
can you perform sp_helpdb 'test'
September 12, 2008 at 12:18 am
Viewing 15 posts - 4,531 through 4,545 (of 7,505 total)