Viewing 15 posts - 5,236 through 5,250 (of 15,381 total)
What did the script look like? I am not familiar with that one but it must have something to do with context because I get a syntax error every way...
April 8, 2014 at 8:40 am
ramyours2003 (4/8/2014)
I got error as belwoDescription: x:\MSSQL\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\tData.mdf Operating system error 665(The requested operation could not be completed due to a file system limitation) encountered.
How to reslove this?
You should keep...
April 8, 2014 at 8:37 am
Notice how g.britton posted ddl and sample data in a consumable format. That is what you should do in the future. Well done g.britton and thanks.
Here is another approach to...
April 8, 2014 at 8:32 am
Here is one way to do this.
--Declare needed variables
--Declare @NoOfApprovals Int --don't need this
declare @Subject varchar(100) --adjust to meet your actual datatype of the parameter
--Get count of approvals
Select @Subject =...
April 8, 2014 at 7:49 am
robmcbarron (4/8/2014)
The output from the sample data gives you the number of months between date x and date y and runs perfectly fine on it's own....
April 8, 2014 at 7:15 am
meltingchain (4/8/2014)
Also thank you Sean, this example was exactly what I was looking...
April 8, 2014 at 7:12 am
MyDoggieJessie (4/7/2014)
These tables are rather large :crazy:
Going to do some creative "googling" and see...
April 7, 2014 at 8:23 pm
I figured the author was looking for NOEXEC but I disagree with the opinion that it is the best way.
April 7, 2014 at 3:36 pm
Not so sure the xml approach is going to be very fast with 200 million rows. What about using MAX(SomeColumn)? That would likely be faster than where Column IS NULL....
April 7, 2014 at 3:08 pm
robmcbarron (4/7/2014)
@Sean Lange - Thanks for introducing those aliases as it is far easier to read! The results from your...
April 7, 2014 at 3:02 pm
balasach82 (4/7/2014)
what is...
April 7, 2014 at 2:42 pm
Big Kudos!!! You are new around here and you posted everything so nicely. This makes it simple and easy to work on the issue. As Luis said, the articles are...
April 7, 2014 at 2:40 pm
Jeff Moden (4/7/2014)
Why are we inserting into an IDENTITY column???? :ermm::blink::crying::pinch::sick:
Sounds to me like the OP is going inserting data that was missed in the original programming. Therefore you need...
April 7, 2014 at 2:23 pm
john.deprato (4/7/2014)
April 7, 2014 at 2:22 pm
Oblivion (4/7/2014)
April 7, 2014 at 12:04 pm
Viewing 15 posts - 5,236 through 5,250 (of 15,381 total)