Viewing 15 posts - 7,096 through 7,110 (of 7,165 total)
I would like to take a shot at this one...can you please provide the DDL for your tables and some DML to build some test data?
February 25, 2011 at 8:51 am
Double post...please direct all replies here:
http://www.sqlservercentral.com/Forums/Topic1069402-392-1.aspx
February 25, 2011 at 8:06 am
sp_help wlll tell you all referenced as well as referencing keys. You want to look at the last two result sets:
USE AdventureWorks
GO
EXEC sys.sp_help @objname = 'HumanResources.EmployeeDepartmentHistory'
If you are interested you...
February 25, 2011 at 8:04 am
harmand (2/25/2011)
Another problem. I have catalog table with a description field. If the description has a comma in it the field in the flat file is in double...
February 25, 2011 at 7:56 am
Lowell's example uses xp_cmdshell to find a list of files to BULK INSERT from specific directories. If the files you'll be BULK INSERTing will never change, or can be sent...
February 24, 2011 at 3:11 pm
As with most things it will depend on a lot of factors...more than we can discuss in this forum. However as an initial direction for supporting reporting functions denormalizing the...
February 24, 2011 at 12:25 pm
February 24, 2011 at 12:14 pm
You'll need to supply a format file. This post may help:
February 24, 2011 at 12:06 pm
mazzz (2/24/2011)
I have a server with a significant amount of CXPACKET waits. It has only one processor (dual core).Does the possible max DOP depend on physical or logical cores?
Possible...
February 24, 2011 at 11:58 am
I would designate the values you have for Products (Shirt), Colors (Green, Blue, etc.) and Sizes (S, M, L, etc.) as "natural keys". Surrogate keys (IDENTITY) are my preferred way...
February 24, 2011 at 11:42 am
namrata.dhanawade-1143388 (2/23/2011)
There are 100 tables each with different number and type of columns and obviously different rows.
And then there is a condition to check if some 5 columns...
February 24, 2011 at 11:27 am
Your OP says you're trying to alter columns from INT to BIGINT but your script is altering columns to VARBINARY(MAX). What exactly are you trying to do?
In any case you'll...
February 24, 2011 at 11:07 am
Here is why using the sp_ prefix for your proc names is a bad idea:
February 24, 2011 at 10:21 am
Please post the DDL for your table and the DML for your data.
February 24, 2011 at 10:15 am
Please post what you have so far.
February 24, 2011 at 10:13 am
Viewing 15 posts - 7,096 through 7,110 (of 7,165 total)