Viewing 15 posts - 61 through 75 (of 288 total)
I have not run across a problem.. yet.. but does this problem also cover indexes on temp tables? Thus is there any issue with me doing the following?
CREATE TABLE [dbo].[#History](
[Extract_Date]...
April 1, 2015 at 2:44 pm
MyDoggieJessie (3/26/2015)
It could be that you're filling up your files faster than the job is able to pull them out...so it's getting overwritten...
March 29, 2015 at 9:22 am
Thanks for sharing .... I seem to have found a bug though... we are missing some changes and the point of failure that I am looking at.. is when the...
March 26, 2015 at 12:21 pm
MyDoggieJessie (3/17/2015)
March 18, 2015 at 7:18 am
GilaMonster (3/17/2015)
You can look at sys.objects in each database and look at the create_date and modify_date, but I think there are things you can...
March 17, 2015 at 9:07 am
CASE figures out what type it is returning before the query is executed. It is not expecting to get different types for different rows. If thats what you give...
March 11, 2015 at 10:40 am
For some reason it is trying to convert my data type to a number... one is varchar and the second is an ID field.
, CASE @Sort_Sel
WHEN 'Resource' THEN R.RESCODE
ELSE D3.DATEID
END...
March 11, 2015 at 7:25 am
Thanks... did not know you could put case into ORDER BY ... it is a good day when you learn something new..
March 11, 2015 at 7:00 am
Thanks for both of your replies.. During lunch I read through the article. Will try and get back to this project tomorrow.
David
January 22, 2015 at 11:29 am
BTW I created a script task for each server, that way I could disable a server's removal of database files if needed (this came up last week and we needed...
November 20, 2014 at 7:02 am
I did finally get the C# syntax for 2008... so this is what I ended up with, in the script task box. Note it connects to our file and print...
November 20, 2014 at 6:55 am
DonlSimpson (11/12/2014)
Since it's a one column key, you can put the constraint on the column definition:
CREATE TABLE [dbo].[#ShipTo]
([Ship_to_Num] [int] not null PRIMARY KEY CLUSTERED,
[Country_key] [nvarchar](3) NULL)
Forgot about that.......
November 12, 2014 at 2:48 pm
dogramone (11/12/2014)
Get rid of the square brackets after the word constraint. So instead of "CONSTRAINT [] PRIMARY KEY CLUSTERED " have "CONSTRAINT PRIMARY KEY CLUSTERED "
Ok, thanks...
CREATE TABLE...
November 12, 2014 at 2:44 pm
Viewing 15 posts - 61 through 75 (of 288 total)