Viewing 15 posts - 2,851 through 2,865 (of 13,469 total)
I'm always into the free resources, as long as you are willing to pour your time into learning.
I started straight from the source: android.com has a lot of of reosurces...
December 5, 2013 at 5:37 am
sqlvogel (12/4/2013)
That's incorrect. It's not necessary to create a primary key for referential integrity purposes. Referential Integrity is a good thing of course but you can enforce referential integrity against...
December 4, 2013 at 1:46 pm
at one point, built a .NET project that used the quickbooks connector from http://www.rssbus.com/;
with that, and some minor configuration in quickbooks to allow remote access, i was able to see...
December 4, 2013 at 10:48 am
mote.ajit2 (12/4/2013)
I am trying to call procedure from function but getting following error.
Invalid use of side-effecting or time-dependent operator in 'INSERT EXEC' within a function.
Actually I want table valued function...
December 4, 2013 at 5:46 am
sree-226516 (12/3/2013)
We have a stored procedure which updates table A every 5 mins whole day(9AM to 7PM).Table A has only one day worth data and end of the day it...
December 3, 2013 at 2:39 pm
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
Viewing 15 posts - 2,851 through 2,865 (of 13,469 total)