Viewing 15 posts - 16 through 30 (of 117 total)
SELECTMay 2, 2017 at 10:38 am
kevabug,
I think you mentioned your solution, or at least half of it. "In Excel I can create an ODBC or OLEDB connection and extract information direct from the...
May 2, 2017 at 8:32 am
VD, that won't help speed things up, but it is certainly proper use of Try Catch logic. Below is what we use in the CATCH portion: BEGIN CATCH
May 2, 2017 at 8:11 am
While I agree that what you are looking to implement as a solution isn't horrible, I would agree with Thom that getting the client to commit to a repeatable process...
May 2, 2017 at 7:57 am
As with most SQL Questions, it depends. First, I would hope that a batch that updates millions of records is run off hours so that application users wouldn't be held...
May 2, 2017 at 7:41 am
Robert,
I think your issue is with "min(content)". I don't see content in your list of fields. You may want to substitute an actual column name.
April 28, 2017 at 9:22 am
If your web server is on a different physical box than your report server you will need to install the fonts on the web server too.
April 28, 2017 at 8:57 am
I don't know if this will help but it helped me locate users logged in from multiple pc's.
selectdistinct
loginame,
hostname
from master..sysprocesses
whereloginame IN (
SELECTloginame
FROM(
selectdistinct
loginame,
hostname
from master..sysprocesses
where loginame not in ('sa')
and...
March 22, 2017 at 9:02 am
I think you will see a performance gain if you variablize this instead of doing it inline every time.
The way you have this set up it will run the...
March 22, 2017 at 8:42 am
Sam,
What BCP outputs is XML. It's the viewer that you're having issue with.
I use NotePad++ and have added the XML Plugin.
Once I open...
January 27, 2017 at 1:33 pm
January 19, 2017 at 7:33 am
I have a few tables in one server which contains huge amount of data lets say...
January 13, 2017 at 7:35 am
Assuming that you have hundreds or thousands of files and a manual comparison would be too time consuming I would create an SSIS Package using a For Each Container and...
March 31, 2015 at 7:30 am
Viewing 15 posts - 16 through 30 (of 117 total)