Viewing 15 posts - 31 through 45 (of 59 total)
Depends on how long you want to keep the information for 🙂
If it's only for a short time to allow export to a reporting database, you could use Change Data...
November 19, 2013 at 8:06 am
Could be a disk bottleneck, or latency if you're backing up to a network share.
There's some discussion and good advice here:
November 19, 2013 at 6:44 am
Do you really need the instance name and the port number ?
I've always used (for an instance on port 666):
Servername,666
not servername\instancename,666
..or is it special for SQL...
November 19, 2013 at 3:49 am
I seem to remember having a similar question myself a while back, which broke down as follows:
If the data set it too large to fit in the RAM that SSIS...
November 8, 2013 at 3:12 am
You don't need to bring the database back online before doing the restore.
I do this quite a lot:
ALTER DATABASE myDatabase SET OFFLINE WITH ROLLBACK IMMEDIATE;
RESTORE DATABASE [myDatabase] FROM DISK...
November 7, 2013 at 5:33 am
..... Sensitivity= 'CONFIDENTIAL'.
If you omit the @sensitivity parameter, does the mail send OK ? And I know it's a stupid question, but can you send a mail to the intended...
November 6, 2013 at 6:59 am
As long as your mail profile is called 'Profile Name', that looks OK.
Have you checked the logs as per http://technet.microsoft.com/en-us/library/ms190630(v=sql.105).aspx ?
November 6, 2013 at 2:46 am
OK, this is largely from my own experience, but backed up by what we know about database backups.
When a database backup is started, an internal snapshot is taken to preserve...
November 5, 2013 at 10:27 am
Love it when people did stuff "because it works", only to leave a timebomb for us later on 😛
Good effort getting as far as you did, though !!
November 5, 2013 at 9:46 am
You can't full back up a database at the same time as another full backup is already running.
Worst case is the second will queue behind the first one until the...
November 5, 2013 at 9:24 am
Bhuvnesh (11/5/2013)
...missing schema....
This is most likely the cause of the problem. 'dbo' has access to all objects in all schemas, so can do the DROP fine.
Do all users have their...
November 5, 2013 at 7:30 am
As a first, there's this:
http://technet.microsoft.com/en-us/library/ms187540(v=sql.105).aspx
🙂
Can you share a extract of the procedure that you're using to send mail ? just the bit that does the sending, not the full text...
November 5, 2013 at 7:14 am
Kinda. Once allocated, nothing will change the port number unless it's changes manually.
AFAIK, there's no windows service or function that monitors or allocates TCP ports. Technically, there's nothing stopping 2...
November 5, 2013 at 4:52 am
The name 'dynamic ports' is a bit confusing.
If selected on installation, SQL Setup will pick an available port, and assign that to SQL Server, but that's about as dynamic as...
November 4, 2013 at 6:59 am
This probably isn't the kind of advice you were looking for, but it's usually best to re-write your ETL in SSIS directly rather that attempt to migrate DTS to SSIS.
There...
October 23, 2013 at 2:41 pm
Viewing 15 posts - 31 through 45 (of 59 total)