Viewing 15 posts - 2,851 through 2,865 (of 13,461 total)
karthik babu (12/3/2013)
Please check the below code..
set rowcount 40000
Update T1 SET sName = t2.sName
from dbo.t_table1 T1 INNER JOIN dbo.t_table2 T2 ON t1.tID =...
December 3, 2013 at 7:12 am
lianvh 89542 (12/2/2013)
we use varchar(max) , and I also read Text is to be depricated . My concern is this : You'll have poor performing queries on this column...
December 3, 2013 at 6:48 am
karthik babu (12/3/2013)
May be.. but I didn't use begin transaction to use commit.. should I include begin tran... end tran with commit..?Else that query will continue running indefinitely? :w00t:
is the...
December 3, 2013 at 6:44 am
what version is your SSMS tool actually running?
I've seen similar issues with the scripting of objects, where a prior version of SSMS cannot work correctly against a higher version...
December 2, 2013 at 12:46 pm
LutzM (12/2/2013)
Objection, your Honor!The physical storage on disk is based on the clustered index, which doesn't have to be the PK.
sheesh, i know that, explained that lots of OTHER times,...
December 2, 2013 at 12:25 pm
two primary keys, by definition, would be repetitively redundant 😀 if you think about it.
essentially the primary key's main purpose is to be able to uniquely point to each...
December 2, 2013 at 11:39 am
rray 44280 (11/27/2013)
November 27, 2013 at 1:09 pm
JimS-Indy (11/27/2013)
November 27, 2013 at 12:04 pm
for a single stored procedure, you would grant view definition on the User in the database(or the role/windows group)
GRANT VIEW DEFINITION ON dbo.DelimitedSplit8K to ClarkKent;
GRANT VIEW DEFINITION ON dbo.DelimitedSplit8K...
November 27, 2013 at 11:51 am
Jim i see the join critieria is this:
LEFT JOIN tblPOLine AS L
ON I.POID = L.POID
AND I.POLINENUM =...
November 27, 2013 at 11:35 am
you have to make sure ALL of your variables are the same (nvarchar(max))
Truncation when concatenating depends on datatype.
if you do something like this:
nvarchar(max) + varchar(n)
SQL will first convert the...
November 27, 2013 at 6:48 am
mailtoashokberwal (11/27/2013)
I need to compare two strings which have comma separated ISO Country codes.
For example : String1 = '356,840'
...
November 27, 2013 at 6:37 am
if not too much time has passed, it will be in the default trace;
but the default trace only keeps a rolling history of 100 meg, so it could get pushed...
November 26, 2013 at 2:59 pm
ok, flexing my Google-Fu a little bit, i found this article that might help; it claims to find long running jobs in 2000-2008 versions:
http://archive.msdn.microsoft.com/SQLExamples/Wiki/View.aspx?title=AgentLongRunning
November 26, 2013 at 1:51 pm
lptech (11/26/2013)
Start with the sysjobactivity table, and you should be able to come up with something that fits your needs.
I don't have a 2000 server to test agaisnt, but assuming...
November 26, 2013 at 1:22 pm
Viewing 15 posts - 2,851 through 2,865 (of 13,461 total)