Viewing 15 posts - 256 through 270 (of 5,590 total)
rsrvas (9/4/2015)
"First A not followed by a B, C or D statement" means "A is present before B, C or D" need to ignore
i am explaining again with...
September 4, 2015 at 9:15 pm
mar.ko (9/4/2015)
INSERT WITH SELECT HAS THIS:,Convert(Int,TARG_SALES) AS TARG_SALES
Treats the column as if it were formatted decimal !!
Please supply the following information:
CREATE TABLE statement for the table being inserted into.
CREATE TABLE...
September 4, 2015 at 8:57 pm
amar_kaur16 (9/4/2015)
Each customer is uniquely identified by a...
September 4, 2015 at 8:52 pm
chandrakant_gaurav (9/4/2015)
IF Object_id('GoldenSecurityRowVersion') IS NOT NULL DROP TABLE dbo.GoldenSecurityRowVersion;
CREATE TABLE dbo.GoldenSecurity (securityID INT, CompanyId INT, Securityname VARCHAR(50), issuedate SMALLDATETIME, currencyID INT)
CREATE TABLE dbo.GoldenSecurityRowVersion...
September 4, 2015 at 1:26 pm
Very nice Luis.
(And here I was looking into a QU version)
September 4, 2015 at 8:19 am
And since the text data could be larger than 8k, I'd go with varchar(max) myself for the TextData column.
September 3, 2015 at 11:49 am
Glad it was helpful for you.
September 1, 2015 at 8:40 pm
jasona.work (8/31/2015)
Jeff Moden (8/31/2015)
Steve Jones - SSC Editor (8/31/2015)
September 1, 2015 at 7:34 am
chindilog (8/31/2015)
select ...
August 31, 2015 at 11:03 am
myjobsinus (8/31/2015)
Creating Stored Procedures for each query and use sys.dm_sql_referencing_entities is a good idea. but the problem is some queries will have variables used with...
August 31, 2015 at 10:55 am
JoseMenendez (8/29/2015)
August 31, 2015 at 10:36 am
For What It's Worth, my experience mirrors what Jeff has written. In fact, I even do an all day training sessions of bad things that are done to databases... and...
August 29, 2015 at 9:12 pm
ITU_dk2012 (8/29/2015)
Could you provide some examples?Thank you.
INSERT INTO <table> (<columnlist>)
EXECUTE <procedurename> <parameters>;
INSERT INTO <table> (<columnlist>)
SELECT <columnlist> FROM OPENROWSET (...)
August 29, 2015 at 9:04 pm
alessandro.feltrin (8/29/2015)
I don't use Windows authentication but SQL "sa" authentication, so i this case there should be no problem i feel. So, i should be able to restore my original...
August 29, 2015 at 9:01 pm
Viewing 15 posts - 256 through 270 (of 5,590 total)