Viewing 15 posts - 466 through 480 (of 13,460 total)
my rule of thumb is for any table over say, 100K rows or so, data transfers like this should be done using the Import/Export Wizard, or via SSIS, so that...
Lowell
June 21, 2017 at 3:02 pm
did you resolve this? when i read it, the first thing i though was it might be database context.
if the database context was master, you'd get that exact error,...
Lowell
June 21, 2017 at 3:00 pm
thanks Eirikur, I've got several typical styles I've inherited via copy paste over time that would be improved that way, I know.
I still have things that are selecting rownum from...
Lowell
June 20, 2017 at 1:44 pm
things like logins and user permissions i kind of prefer to do via TSQL instead of a black box tool that is scripting via SMO.
I like Perry Whittle's...
Lowell
June 20, 2017 at 11:24 am
i created this simple parsename function that grabs items left to right.
so if the item you want is always int eh seventh split, this works great:/*
Lowell
June 20, 2017 at 10:20 am
From the description, I'm thinking the issue is you have a slow report,and if multiple people hit it, it's slow, bogs down the system, etc.
I don't think there...
Lowell
June 14, 2017 at 6:38 am
when you connect via SSMS, it is using the dns and wins services to resolve an name/alias to a specific IP address; therefor since the server already existed, it would...
Lowell
June 13, 2017 at 2:02 pm
this is what i use:
with extremely rare exceptions, I want @@servername to return the name of the machine.
So if I clone VMOriginal as VMNew, when i connect to...
Lowell
June 13, 2017 at 12:44 pm
there's an additional table to join to, the msdb.dbo.sysmail_event_log , where the [description] column will tell you exactly what the issue is;
it's typically an error from the mail server, username...
Lowell
June 13, 2017 at 12:16 pm
stakhilmadivada - Tuesday, June 13, 2017 11:25 AMFor every Device ID it returns the both data and unit fields.
but the Data you provided...
Lowell
June 13, 2017 at 11:45 am
the root of all harddrives are protected. N'D:\MyTrace.log' is invalid due to those protections.
you pretty much HAVE to put files in a subfolder.
Lowell
June 13, 2017 at 10:27 am
I think that's partially incorrect. Lowell
what I read is that a linked server featuring the SQLOLEDB is deprecated, and must be replaced with a server using the SQLNCLI) driver instead.
--help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!
June 13, 2017 at 10:22 am
Lowell
June 13, 2017 at 9:59 am
easy fix, the path for the file is wrong. it has slashes like a UNC path,a s well as a drive letter. it's one or the other. Maybe you mean...
Lowell
June 13, 2017 at 9:46 am
this was kind of interesting, so I imported the file into a varchar max column, and used two CrLf as the delimiter, and the pipe character as the column delimiter(since...
Lowell
June 13, 2017 at 8:37 am
Viewing 15 posts - 466 through 480 (of 13,460 total)