Viewing 15 posts - 136 through 150 (of 202 total)
i think i found it.
http://blog.sqlauthority.com/2008/08/31/sql-server-table-valued-parameters-in-sql-server-2008/
January 11, 2013 at 7:54 am
u'r right. It's more of an excercise for my team. It wont be used in production environment. Theying to convert something they do everyday into a "generic" proc call.
So,...
January 11, 2013 at 7:50 am
sounds like something from a school lesson. gotta give the kid props for using availible resources.
December 18, 2012 at 1:49 pm
another option. particularly effective if there is an index on the column in the contraint. Customerid in this instance. Prob better than the cross apply though.
SELECT c.CustomerID, o.OrderDate,
(...
December 18, 2012 at 8:08 am
thanks guys
December 12, 2012 at 12:46 pm
here's an example of what i'm trying to do. I'm getting an "Error converting data type nvarchar to int." error. i want the script to be smart enough so that...
December 12, 2012 at 8:54 am
u should use perameterized dynamic sql to get away from the sql injection
December 12, 2012 at 7:58 am
sorry. dont know what i was thinking. it isnt rolling back any updates from previous loops. please disregard
December 6, 2012 at 9:39 am
that stinks. i'm scared to run a trace for an extended period of time too. The issue doesn't happen every day.
Oh well. Thanks.
May 9, 2012 at 1:37 pm
would they be on the app logs on the sql box perhaps?
May 9, 2012 at 12:17 pm
thats it. the sql service on this specific box is running off the local system instead of domain account therefore it can acces the share. It doesnt surprise me. This...
April 2, 2012 at 9:42 am
does the sql account have permissions to the shared folder?
Do you mean the sql account i'm logged in as when running the bcp? Or the account the sql...
April 2, 2012 at 8:58 am
looking at an old post i see where someone posted the below
=============================
Run
exec master..xp_fixeddrives
What is the result?
==============================
when i do this the mapped drive i created doesnt show.
April 2, 2012 at 8:49 am
Viewing 15 posts - 136 through 150 (of 202 total)