Viewing 15 posts - 331 through 345 (of 2,171 total)
janine.rawnsley (8/13/2009)
Because honestly, I have no idea why you'd take the...
August 13, 2009 at 4:26 am
You are mixing both XML (xquery) and FULLTEXT?
August 13, 2009 at 12:44 am
DECLARE@ INT = 1
SELECT@ AS [INT],
@@VERSION AS [@@VERSION]
INT @@VERSION
----------- ------------------------------------------------------------------------
1 Microsoft SQL...
August 12, 2009 at 7:56 am
Thank you!
You did the hard work. I did nothing but finding some "edge" conditions for you to fix.
August 11, 2009 at 12:05 pm
Congratulations Barry!
It's a good thing they accepted your late submission 🙂
August 11, 2009 at 8:31 am
Or use the new OUTPUT operator?
;with CTE1(col1,col2)
as
(
Select Col1,col2 From table 1
)
INSERT INTO table2
output inserted.*
into table3
Select * from CTE1
August 10, 2009 at 1:04 am
Try this.
SELECT object_name(object_id), * FROM sys.dm_db_index_usage_stats
where object_name(object_id) is not null
August 9, 2009 at 5:24 am
A bunch or replies here too
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=130520
Even if the parameters are never NULL, they form a query which filters by the parameters.
The result of the query may not match any record...
August 4, 2009 at 2:45 am
There seems to be a performance threshold about 13 levels deep.
August 3, 2009 at 1:45 pm
Also see this blog post for alternate ways to display your data.
July 30, 2009 at 3:06 pm
We can't help you any further because we don't have enought information.
Please prefix all your column names with table name or alias.
select distincta.EMPID,
sdate
into#temp1
fromdbo.vwJobcd as a
inner join#tabdates as b on a.EMPID...
July 28, 2009 at 2:53 pm
See http://www.sqlmag.com/Article/ArticleID/98568/sql_server_98568.html
Adventures with Big Data: How to Import 16 Billion Rows into a Single Table
Tips on how to use T-SQL's BULK INSERT statement and the BCP utility
July 26, 2009 at 2:09 pm
DBCC CHECKIDENT() with RESEED option.
July 26, 2009 at 2:08 pm
Or create the procedures and functions using
WITH ENCRYPTION
will make it harder for people to read your code.
July 26, 2009 at 2:06 pm
Of course not!
I just googled the keywords and the link popped up.
July 25, 2009 at 1:13 pm
Viewing 15 posts - 331 through 345 (of 2,171 total)