Viewing 15 posts - 2,356 through 2,370 (of 2,894 total)
Jeffery Williams (9/29/2010)
Right.......Not sure how my job title plays into this however any recommendations on the coding FROM a SP would be great.
...
Sorry mate, your job-title has quite a play...
September 29, 2010 at 8:43 am
Looking into your job-title I can recommend hiring some programmer with SQL and/or SSIS skils.
This work can be done in Excel using Excel VBA or any other programming language which...
September 29, 2010 at 7:53 am
frfernan (9/29/2010)
as far as I know a clustered index is best for sequential reading. If you create a clustered index using Attrib_Z, any query like
SELECT * FROM Widgets WHERE Attrib_Z...
September 29, 2010 at 7:45 am
scott.pletcher (9/27/2010)
September 27, 2010 at 10:00 am
You have primary key clustered index on your table, is it incremental?
What your triggers do?
"forever" is relative term. What is your "takes forever" means? does it time-out? Takes seconds?...
September 27, 2010 at 9:43 am
Which table contains producers/makers?
September 27, 2010 at 8:54 am
umanpowered (9/26/2010)
The goal is to eliminate the duplicate data in C1. So if it was
B | X
B | Y
A | Z
The goal would be for the query to return
B...
September 27, 2010 at 7:13 am
check what is row delimiter in your header row, is it the same as for your daa rows?
Note: by default BCP uses (new line character) for row terminator...
September 27, 2010 at 5:14 am
It does look like the table in your eample is populated by some PIVOTING query. I would recommend to have a look it and see where data is comming from...
September 27, 2010 at 5:06 am
bitmask "nerd-kind" variation :-D:
;with stbb
as ( SELECT 5 AS Status, 1 AS BitMask UNION
SELECT 6 AS Status, 2 AS BitMask UNION
...
September 15, 2010 at 4:04 am
BTW, I've tried your script - it works for me.
August 26, 2010 at 11:04 am
krypto69 (8/26/2010)
...The DELETE statement conflicted with the REFERENCE constraint "FK_Security_UserClientSignature_Security_UserClientMetaData". The conflict occurred in database "ASPNETDB", table "dbo.Security_UserClientSignature", column 'UserClientMetaDataId'.
The statement has been terminated.
Works fine if I delete the FKey
The...
August 26, 2010 at 11:00 am
Ness (8/26/2010)
...Execute Sp_executeSql stmt does not run the sql. The printed version looks right but it does not run against the db (verified via profiler). Any ideas?...
What it returns to...
August 26, 2010 at 10:52 am
Viewing 15 posts - 2,356 through 2,370 (of 2,894 total)