Viewing 15 posts - 421 through 435 (of 607 total)
INSERT INTO PseudoTable VALUES ('Tear,Bike,Monkey')
SELECT * FROM PseudoTable WHERE Item LIKE '%tea%'
1 row returned.
INSERT INTO PseudoTable VALUES ('Tear')
INSERT INTO PseudoTable VALUES ('Bike')
INSERT INTO PseudoTable VALUES ('Monkey')
SELECT * FROM PseudoTable WHERE...
February 21, 2013 at 5:55 am
shanghaigirl-1125377 (2/4/2013)
February 13, 2013 at 6:07 am
SELECT
SUSER_SNAME(owner_sid),
*
FROM
msdb..sysjobs
WHERE
SUSER_SNAME(owner_sid) = 'NT AUTHORITY\SYSTEM'
February 13, 2013 at 3:02 am
You need to make sure that the new data type is compatible with IDENTITY.
Identity column must be of data type int, bigint, smallint, tinyint, or decimal or numeric with a...
February 6, 2013 at 5:19 am
wendy elizabeth (2/5/2013)
However there are times when the username and password is required.
Why?
wendy elizabeth (2/5/2013)
can I use a windows identity to pass in the user info?
Yes, in the connection string...
February 6, 2013 at 5:11 am
The key is here:
Couldn't find local patch 'C:\Windows\Installer\3d567442.msp'
and this article will help you fix it:
February 6, 2013 at 4:05 am
Mike Seattle (2/5/2013)
...gave me all the answers discussing the new features amongst yourselves...
Hardly even scratched the surface.
My favourite is
SELECT modification_counter
FROM sys.dm_db_stats_properties
February 5, 2013 at 7:51 am
February 5, 2013 at 7:38 am
shreekanth.kavali (2/1/2013)
how long the update statistics job used to run on the largest database(of size 1300GB)
Just a bit longer than on the 2nd largest database.
February 5, 2013 at 7:21 am
GilaMonster (2/1/2013)
asmita.patel (2/1/2013)
for example
select a.*
from <<tbl_aa>> a with (nolock)
Join <<tbl_bb>> b with (nolock) on a.aa_id = b.bb_id
--Note: You need...
February 5, 2013 at 7:20 am
worker bee (1/31/2013)
2. Always, ALWAYS, use a script to set up email, SQL just doesn't like the GUI interface, sometimes it works, sometimes it does not.
For DbMail I always use...
February 4, 2013 at 2:36 am
ChrisM@Work (2/1/2013)
Sean Pearce (2/1/2013)
johnnycash (1/31/2013)
Countries where a comma "," is used to mark the radix point include:...South Africa...
Wrong.
Abrupt! How about a source?
Thanks, I failed at Google and hoped everyone would...
February 1, 2013 at 3:36 am
johnnycash (1/31/2013)
Countries where a comma "," is used to mark the radix point include:...South Africa...
Wrong.
February 1, 2013 at 3:25 am
What are you trying to accomplish?
January 31, 2013 at 7:31 am
What happens when the customer is called Rachel?
January 31, 2013 at 7:05 am
Viewing 15 posts - 421 through 435 (of 607 total)