Viewing 15 posts - 556 through 570 (of 2,897 total)
GilaMonster (1/10/2014)
January 10, 2014 at 1:29 pm
We have some semi-static reporting databases that run long queries. Some of them use nolock to avoid one report blocking another. In this case, the data was refreshed over night...
January 10, 2014 at 9:55 am
It might help to give specific info about your SQL version and relevant server OS version.
January 9, 2014 at 6:50 pm
Yes, Table_B has 45,000 nulls in Email1, but that shouldn't be related to the 43 records. I can't see what is different about them. All 488 came from...
January 9, 2014 at 11:22 am
That makes sense. Looks like it's going to work, Thanks !
January 8, 2014 at 8:16 pm
I tried something like this, and the temp table does contain the new MemID values, but get the error " Must declare the scalar variable "@MemberID"." during...
January 8, 2014 at 4:10 pm
You can display all your views in SSMS "Object Explorer Detail" window, then highlight all the views you want to change. Right click and select "Script View As" -> "Drop...
January 8, 2014 at 3:33 pm
Thanks, I was guessing it was something like that, but I have not found it yet. I assumed it would be on the target server where it runs, while pulling...
January 6, 2014 at 5:39 pm
You can use Import/Export Wizard as Gail suggests, then when you finish setting everything, you can "SAVE" the wizard as an SSIS package that you can rerun each week.
There are...
January 5, 2014 at 7:09 pm
Or maybe a SQL scheduled job that backs up the DB to a local drive, then step 2 runs a batch file to copy to DVD ??
January 5, 2014 at 3:38 pm
Sql Server Integration Services (SSIS) has a lot of functions to transfer and manipulate data.
January 5, 2014 at 10:18 am
At a previous job the person doing reporting had some jobs that used Reporting Services to populate Excel sheets for users to read.
January 4, 2014 at 3:29 pm
You can look up plenty of online example of CASE statements. To see what columns a table has, look in sys.columns.
select name from MyDatabase.sys.columns where OBJECT_NAME(object_id) = 'MyTable'
January 4, 2014 at 11:18 am
Viewing 15 posts - 556 through 570 (of 2,897 total)