Viewing 15 posts - 5,911 through 5,925 (of 13,468 total)
my Google-Fu is strong.
you can optionally delete to the recycle bin with powershell:
http://stackoverflow.com/questions/502002/how-do-i-move-a-file-to-the-recycle-bin-using-powershell
February 24, 2012 at 12:50 pm
rebuilding the index requires a lot of space...I've heard a rule of thumb as 1.5x the size of the table.
maybe you rebuilt the indexzes? large overnight ETL?
from MS:
February 24, 2012 at 10:38 am
glad I could help a little bit!
February 24, 2012 at 8:53 am
SQLEnthus (2/23/2012)
apologize for the formatting, attached a spreadsheet with good formatting
here you go; this is the best way to provide sample data in the future; anyone who follows the thread...
February 23, 2012 at 2:43 pm
also, it depends on the file format;
if the original source text file was created in unix, you might need to use \r ( vbCr = CHAR(13)/ Return/Carriage...
February 23, 2012 at 6:53 am
sqlfriends (2/22/2012)
And I don't want give them rights to view or run other jobs because this is a production...
February 22, 2012 at 2:00 pm
these two extended procs examples might help.
one tells you who belongs to a group, the other can tell you all the grouls i belong to:
EXEC master..xp_logininfo
@acctname =...
February 22, 2012 at 1:17 pm
pretty loose on the details.
do you have to copy the backup(s) from somewhere to the UAT server now?
do you have the current backup(s) scripted out already so you can just...
February 22, 2012 at 11:23 am
unless you already have created a trace which is capturing that information, it's not available anywhere. SQL server does not keep track of successful logins unless you enabled it or...
February 22, 2012 at 8:33 am
Different application hitting the server, or the identical application and same traffic?
It's been mentioned at least half a dozen times that SQL using all the memory is perfectly normal, but...
February 22, 2012 at 6:58 am
AWE settings have no affect on 64 bit isntallations.
by default, SQL will consume 100% of the memory, or up to 100% of the maximum you set.
What can be a little...
February 21, 2012 at 2:12 pm
Eugene Elutin (2/21/2012)
try this:http://www.sqlservercentral.com/articles/Best+Practices/61537/
should help to get the most relevant answer in minutes.
link from above updated: the link had an extra
character in it after the forum rendered...
February 21, 2012 at 9:57 am
what events are you using?
my traces usually have both SQL:BatchCompleted and RPC:Completed
RPC:Completed will return code when a proc is executed, whether in TSQL or when a command object has...
February 21, 2012 at 9:54 am
and another way, via an extended stored proc:
EXEC master..xp_logininfo
@acctname = 'mydomain\lowell',
@option = 'all' -- Show all paths a user gets his auth from
go
EXEC master..xp_logininfo
...
February 21, 2012 at 9:20 am
from your query so far, i couldn't infer any datetime columns exist that you could pull the year out of.
there is a YEAR function that will get the year of...
February 21, 2012 at 9:14 am
Viewing 15 posts - 5,911 through 5,925 (of 13,468 total)