Viewing 15 posts - 16 through 30 (of 50 total)
Did you try (local)?
September 25, 2012 at 3:30 pm
Yes, the name of your machine. Otherwise when using a client tool to connect to a SQL Server instance on the current machine "(local)" will work.
September 25, 2012 at 3:08 pm
I am a bit confused since you indicate your backups are being overwritten. As in - new backup overwrites old.
If you do know that you have a backup that...
September 24, 2012 at 11:18 am
Excellent article! And thanks for clearing up, once and for all, the issue over full backups/log chain. It was always my understanding that full backups break the the log...
September 22, 2012 at 2:36 pm
I would like to add that once you have done the above (and those transaction log backups are critical to database health) you should think about getting a test instance...
September 22, 2012 at 8:03 am
Please consider the option that Gail presents as well.
September 19, 2012 at 10:58 am
Without knowing the details of your configuration it is hard to say for sure. I do know that in general, once a file is full, SQL can shift to a...
September 19, 2012 at 10:29 am
It will be interesting to see what results you get. I should think they would be consistent.
September 19, 2012 at 7:47 am
The LEN function won't give you trailing spaces. Try this instead:
declare @sqlStr varchar(max)
set @sqlStr = 'aa, '
print DATALENGTH(@sqlStr)
September 19, 2012 at 7:17 am
The SQLAgent job is dependent on the privileges of the SQL Server Agent service.
Reading between the lines, you might also be needing to assign the SQLAgentOperatorRole to those user accounts....
September 17, 2012 at 5:28 pm
If you have SQLExpr32_x86 you are out of luck. Here are the three versions available for download:
SQLEXPR32_x86 only for 32-bit windows systems.
SQLEXPR_x86 for both 32-bit and 64-bit windows...
September 17, 2012 at 3:30 pm
Divine Flame (9/17/2012)
SQL Kiwi (9/17/2012)
Good question, I guess, though I would have preferred it without the INIT trap.
Thanks for the feedback Paul. Many of us (including me until I didn’t...
September 17, 2012 at 6:45 am
If you are not already aware of it, a good read on the subject of ETL can be found in the "Stairway" section on this website. Look for "Stairway...
September 16, 2012 at 10:12 am
What other roles is this server involved in? Domain controller, file server?
Is SQL Server optimised on your Windows server?
September 15, 2012 at 9:21 am
Rather than put forth a new question I thought I would bump someones else s old post to the front of the line - a cosmopolitan SQL Server 2008 problem...
September 14, 2012 at 5:12 pm
Viewing 15 posts - 16 through 30 (of 50 total)