Viewing 15 posts - 4,381 through 4,395 (of 9,643 total)
To the best of my knowledge there is no row limit on EXCEPT and I wouldn't think that there would be. Are you including the same column list in...
August 17, 2009 at 6:57 am
You aren't using nolock or SET ISOLATION LEVEL READ UNCOMMITTED are you?
August 17, 2009 at 6:41 am
ta.bu.shi.da.yu (8/17/2009)
Obviously, the question I saw earlier (how do...
August 17, 2009 at 6:38 am
I think this is what you need.
"insert into MyTable(column1) values (QuoteName(" + REPLACE((DT_STR, 25, 1252) @[User::XMLTestVar1], "", "") + ", ''''))"
You may have to tweak it a little to make...
August 17, 2009 at 6:27 am
Take a look at this article, Introduction to SQL Server Profiler.
If you are more comfortable learning using videos you can check out the Mastering SQL Server Profiler Video Series[/url].
There...
August 17, 2009 at 6:22 am
Thanks Peso, but that Connect Issue is a different issue. Mine is that Profiler and Statistics IO report a different # of READS when looking at the same query....
August 15, 2009 at 8:34 am
Using OLEDB the parameter character is a ?. So your query should look like this:
Select
*
From
vpb110.pmt_app_ts >= ?
and...
August 14, 2009 at 2:54 pm
You need to escape the single-quote/apostrophe in the name. This should work:
"insert into MyTable(column1) values ('" + QuoteName(REPLACE((DT_STR, 25, 1252) @[User::XMLTestVar1], "", ""), '''') + "')"
You can run this...
August 14, 2009 at 2:45 pm
It definitely seems like this could be it. That begs the question, which one do you use for performance tuning? I mean the difference between the queries in...
August 14, 2009 at 1:42 pm
C'mon Gail, you could have left your username and password in there. I might need internet access if I ever get to South Africa!:-P
August 14, 2009 at 1:39 pm
hi_abhay78 (8/14/2009)
Let me know if you need me to type in...
August 14, 2009 at 10:02 am
Feel free to use to DM with the code as an attachment. I prefer not to give out my email address on the forums.
August 14, 2009 at 10:00 am
hi_abhay78 (8/14/2009)
Let me know if you need me to type in...
August 14, 2009 at 8:32 am
There are a few you could use:
I'd probably go with SYSTEM_USER.
August 14, 2009 at 8:08 am
Believe it or not your problem actually has a simple solution once you know the answer. You have defined the @item parameter as CHAR(5), yet you are only inserting...
August 14, 2009 at 7:58 am
Viewing 15 posts - 4,381 through 4,395 (of 9,643 total)