Viewing 15 posts - 961 through 975 (of 1,219 total)
It is impossible to say whether what you want to achieve is possible or not. That depends on how different the databases are.
But SCHEMABINDING is not your guy. SCHEMABINDING...
August 3, 2013 at 3:50 pm
Three million rows in three hours, now that is slow! Then again, how does the table look like? Are there tons of blobs or what is the average row size?
You...
August 3, 2013 at 3:48 pm
Yes, you can upgrade from Standard to Enterprise by running the Setup wizard. A downgrade on the other hand, requires a reinstall as a recall.
August 3, 2013 at 3:41 pm
I get worried when you say that you are a 24/7 shop and you have a restriction on log-file size. This does not bode well, and you will get hurt...
August 2, 2013 at 3:47 pm
1. The tables referred to into the view, directly or indirectly through other views.
2. The schema of the table cannot be modified freely. You cannnot drop or alter columns referred...
August 2, 2013 at 3:40 pm
;May I ask why you want to do this?
In any case, the answer is yes. You need to create an explicit user for the login in the master and then...
August 2, 2013 at 3:32 pm
When you add the EXECUTE AS clause to a procedure you impersonate a database user, not a server login. If you are logged in with sysadmin rights when you create...
August 2, 2013 at 3:20 pm
Thanks for the update. Yes, that is definitely a bug. Good to hear that MS has a fix.
August 2, 2013 at 1:37 pm
david.gugg (8/2/2013)
Most of the records are #[eight digit hex], but there are some from about two weeks ago where it looks like this:#CMTMPCOPYIDS_______________________________________________________________________________________________________000000058082
The latter is a live table. The others...
August 2, 2013 at 1:14 pm
They are very different. A differential backup contains the pages changed since the last full backup. A log backup does not include any pages at all. Instead it contains instructions...
August 2, 2013 at 5:29 am
Yes, I have not worked much with diff backups, but I think they are mainly useful with databases with very few changes. Beware that reindexing jobs are changes, and reindex...
August 2, 2013 at 3:40 am
IT researcher (8/2/2013)
You said "Your restore operatoion will become more complex with differential backups."How and why?
Because you need to restore full backup + diffbackup + log backups. So that...
August 2, 2013 at 3:17 am
Is the # followed by eight hex digits? In that case, they are temp-table definitions that SQL Server has cached. There is no reason to meddle with them.
August 2, 2013 at 1:36 am
rahulpatel112 (8/1/2013)
One way is to assign getdate() in datetime varibale before start of query execution and after the query execution complete and find the difference between both of them.
That's almost...
August 2, 2013 at 1:33 am
See http://www.sommarskog.se/dynamic_sql.html#OPENQUERY for some tips.
August 2, 2013 at 1:28 am
Viewing 15 posts - 961 through 975 (of 1,219 total)