Viewing 15 posts - 826 through 840 (of 3,348 total)
ChrisM@Work (2/16/2016)
February 16, 2016 at 1:33 am
Exactly what steps did you take, in what order, when providing .bak file to SSMS to restore it?
What were the results you got from each step?
February 16, 2016 at 1:31 am
Grant Fritchey (2/15/2016)
Hugo Kornelis (2/15/2016)
jasona.work (2/15/2016)
How do you feel if someone comes back and tells you that they tested a solution you provided before they told...
February 15, 2016 at 3:33 pm
Please post:
- The relevant table(s) - in the form of a CREATE TABLE statement that I can copy/paste, not as an image; and do include all constraints and indexes, please
-...
February 15, 2016 at 3:27 pm
jasona.work (2/15/2016)
How do you feel if someone comes back and tells you that they tested a solution you provided before they told their bosses it was...
February 15, 2016 at 1:34 pm
Please help us help you. Post the following to make it easier for us:
1. CREATE TABLE statements for fake tables to mimic the results of your two views. (They work,...
February 15, 2016 at 1:20 pm
matak (2/14/2016)
If it is in a table like you say cant you just use replace ?replace (col, 'domain1', 'domain2')
Or am i totally missing the point here ?
The point you are...
February 15, 2016 at 1:17 pm
First: Choose if SQL Server 2012 is the best choice. SQL Server 2014 has been available for almost 2 years now, and SQL Server 2016 should hit the shelves later...
February 15, 2016 at 1:03 pm
Exactly what steps did you take, in what order, when you tried to restore the .bak file you have?
What were the results you got from each step?
February 15, 2016 at 12:51 pm
GilaMonster (2/14/2016)
GilaMonster (2/14/2016)
What exactly are you trying to do? Post table definitions (as CREATE TABLE statements) and sample data (as INSERT statements) please
... plus the expected results
February 14, 2016 at 10:08 am
My first thought, right off the bat: is SQL Server even the right tool for this?
Your problem does not look like a good fit for a relational database. Perhaps you...
February 14, 2016 at 8:53 am
Thanks for posting the new plans. 20K in 10 minutes is defintely an improvement and I can imagine that you are happy with this. But I think this can go...
February 14, 2016 at 8:03 am
That delete logic looks pretty inefficient. I think you can use this as the delete statement:
-- Delete first 1,000 addresses
DELETE FROM collateralmanager.DBO.ADDRESS
WHERE ADDRESS_ID IN
(SELECT TOP(1000) ADDRESS_ID
...
February 14, 2016 at 7:41 am
Indianrock (2/14/2016)
CREATE TABLE #tempdata
...
February 14, 2016 at 6:52 am
Indianrock (2/14/2016)
I'll experiment with the number of rows gathered into the temp table up front -- this is only done once per day...
February 14, 2016 at 6:36 am
Viewing 15 posts - 826 through 840 (of 3,348 total)