Viewing 15 posts - 1,231 through 1,245 (of 13,469 total)
i'm pretty sure that all third party dlls have to be registered in the Global Assembly Cache(GAC) as it's not enough to just have the dll's in the folder, when...
March 9, 2016 at 9:55 am
there's nothing in your procedure that requires a cursor, let alone a cursor/while/cursor triumvirate of looping constructs.
In the end, you populate a #Results table, and return the results.
while the rewrite...
March 9, 2016 at 8:00 am
i've done something similar, but i just add the items together, and test for greater than zero; my query is assuming cost is a positive value, never negative, is that...
March 8, 2016 at 3:27 pm
szejiekoh (3/7/2016)
Lowell (3/7/2016)
that service keeps track of what port SQL is running on, and forwards...
March 8, 2016 at 5:27 am
i am definitely under the impression that procedures/functions/packages have to be hand edited, as there's no specific set of rules to convert them;
the migration assistant is fine for tables and...
March 8, 2016 at 5:22 am
i think State 16 means the default database assigned to the login does not exist. it might have been dropped or renamed.
change the default database of the login in question...
March 7, 2016 at 11:07 am
The SQL Browser service has to be running on the server in order to do that;
that service keeps track of what port SQL is running on, and forwards requests to...
March 7, 2016 at 11:00 am
here's one way to do it:
DECLARE @xml XML ='<Item>
<Item customerid="101" customername="Ram" gender="Male" married="Y"/>
<Item customerid="102" customername="Sham" gender="Male" married="Y"/>
<Item customerid="103" customername="Tom" gender="Male" married="N"/>
</Item>'
select
...
March 7, 2016 at 6:51 am
Thanks mister magoo! what tool did you use that helps you identify case sensitivity issues like that?
March 7, 2016 at 6:30 am
Igor thank you very much for your feedback!
Your feedback was spot on, and the extra pair of eyes helped enormously.
because you gave such detailed feedback, i was easily able to...
March 7, 2016 at 6:19 am
i would recommend adding an explicit formatting to the date to guarantee it's converted to YYYY--MM-DD format.
you could potentially be getting dd/mm/yyyy,mm/dd/yyyy or event ""Mar 3 2016" if you don't...
March 4, 2016 at 10:16 am
bcp called via xp_cmdshell runs under the context of the service account running SQL, and not as the logged in user who executed it.
the account is probably not a...
March 4, 2016 at 10:07 am
There's a nifty builtin function called PARSENAME that splits a string like an Application Versions, IP addresses or Servername.Databasename.SchemaName.TableName into it's parts.
you can use that to isolate the second section...
March 4, 2016 at 10:01 am
Sean Lange (3/3/2016)
March 3, 2016 at 2:12 pm
i did a big Powershell documentation initiative.
this script from awhile ago started it:
Powershell script to script out jobs, databases, users, linked servers, logins, roles, alerts, etc from a list of...
March 3, 2016 at 11:13 am
Viewing 15 posts - 1,231 through 1,245 (of 13,469 total)