Viewing 15 posts - 151 through 165 (of 231 total)
What is the error you are getting?
July 13, 2009 at 7:39 am
Steve you are abosolutly correct but the thing is i want to prevent it in development enviornment as App deve offen create the diagrams which different names & i want...
July 8, 2009 at 2:04 am
It would be great if you put any example for better understanding 🙂
May 8, 2009 at 8:09 am
Well I suggest all depends on your business requirement, if you business supports multi language the you should go with NVARCHAR.(I guess you have the knowledge of difference between VARCHAR...
May 8, 2009 at 8:06 am
hey sorry Jack, for duplicate post its my bad.
thanks for your suggestions...:-)
May 7, 2009 at 3:00 am
yeah it would be a suggetion to create "CASCADE DELETE" on child table in the scenarion you have mention but do remember to verify do you have any cyclical...
April 15, 2009 at 8:19 am
You can explicitly grant the permission to the user to modify the stored proc by usering "GRANT" statement.
April 15, 2009 at 8:14 am
i dn't think so you need to user CTE for it it can be done by following way(as mentioned by you only)..
declare @tbl_User table( UserID INT, Username varchar(10), LoginName varchar(20))
declare...
April 15, 2009 at 7:42 am
Vijaya,
I must appreciate for explanation you hvae provided. As you said, (*** The current batch of statements is composed of all statements entered since the last GO....***) I have one...
April 13, 2009 at 8:54 am
You should always know why this is working if you dn't know ask experts
in below examples it creates the procedure with name 'GO' just like 'CREATE PROC uspGO' it takes...
April 8, 2009 at 6:48 am
Why you are going for so many joins, you can achieve this by simple query...
DELETE b
FROM ADIM_ASSOCIATE_CONTRACTOR_RawImport b
JOIN ADIM_ASSOCIATE_CONTRACTOR a ON a.EMPLOYEE_NUMBER = b.EMPLOYEE_NUMBER AND a.[REHIRE_DATE] = b.[REHIRE_DATE]
January 27, 2009 at 7:53 am
I think below example will give you better performance ...
CREATE TABLE tmpProduct
(
ProductIDINT IDENTITY(1, 1) PRIMARY KEY CLUSTERED,
ProductNameVARCHAR(10)
)
CREATE TABLE tmpProductSales
(
ProductSalesIDINT IDENTITY(1, 1) PRIMARY KEY CLUSTERED,
ProductIDINT,
TotalAmtMONEY,
BalanceAmtMONEY
)
INSERTtmpProduct(ProductName)
SELECT'Pr0duct' UNION
SELECT'Pr0duct2' UNION
SELECT'Pr0duct3' UNION
SELECT'Pr0duct4'
INSERTtmpProductSales(ProductID, TotalAmt, BalanceAmt)
SELECT1,...
January 21, 2009 at 6:10 am
rfugikawa (1/21/2009)
- Set the folder;
- set the files (*.xls);
- Retrieve file name = fully qualified;
- In Variables Mapping, set a variable with index = 0;
-...
January 21, 2009 at 5:59 am
before suggesting any design have you done any worked out on any design?
January 21, 2009 at 2:54 am
While installing SQL 2k5 have you choose the option for upgrading...?
January 20, 2009 at 2:12 am
Viewing 15 posts - 151 through 165 (of 231 total)