Viewing 15 posts - 541 through 555 (of 1,838 total)
March 27, 2018 at 12:08 pm
What database is this stored proc in? If this is not in MASTER, then you need to sign the stored proc with a certificate to be able to use EXECUTE...
March 26, 2018 at 10:54 am
if the explicitly specified database XXXXXXX is not on the server, you need to figure out what program on client computer X.X.X.X is trying to login to the database and...
March 23, 2018 at 2:42 pm
if you want to find it all in one pass, you could try something like this:SELECT t1.SSN, t1.Email, t2.SSN, t2.Email,
CASE
WHEN t2.SSN IS NULL THEN...
March 23, 2018 at 11:55 am
SQL Server Agent is a general purpose scheduling tool bundled with SQL Server. If you use maintenance plans, it will create a SQL Server Agent job for you related to...
March 19, 2018 at 10:06 am
patrickmcginnis59 10839 - Friday, March 16, 2018 11:37 AMHow many coalesces does it take to change a light bulb?(null)
I...
March 16, 2018 at 12:32 pm
OK, while I wasn't able to find a solution using BULK INSERT, OPENROWSET, or BCP since they all use the same format file, I was able to build a simple...
March 16, 2018 at 11:58 am
How many Microsoft developers does it take to change a light bulb?
0, they declare darkness is the default and the bulb is not functioning as intended.
March 16, 2018 at 10:51 am
Depending on how long ago it actually was this occurred, you might be able to get some information from the instance default trace. This script will look for Autogrowths in...
March 16, 2018 at 10:07 am
OK, wait, I think I see the problem, it may be related to the number of columns in the first "rows" I think maybe it's trying to read 26 columns...
March 14, 2018 at 12:02 pm
To load your sample file, the only other change I made was in the BULK INSERT statement, changed FIRSTROW = 2. For using this on the actual production file yes...
March 14, 2018 at 10:27 am
I notice in your format file you have all 26 columns set to have a prefix length of 8. If I set them all to 0, I am able to...
March 14, 2018 at 9:11 am
...and right on cue, Gail writes an updated article about catch-all-queries and her latest thoughts on it:
https://www.sqlinthewild.co.za/index.php/2018/03/13/revisiting-catch-all-queries/
March 13, 2018 at 9:29 am
March 13, 2018 at 9:21 am
thank you for help and support!
Data is only needed to pull out to Excel...
March 13, 2018 at 8:38 am
Viewing 15 posts - 541 through 555 (of 1,838 total)