Viewing 15 posts - 421 through 435 (of 663 total)
dk-fr, do your environment have , let say a german SQL server installation and a italian/french client for example?
If you say yyyy-mm-dd what is the 'SET DATEFORMAT' setting on...
May 26, 2003 at 2:09 pm
Would you be as kind to post a reference to the article?
May 25, 2003 at 9:15 pm
Have a look at ThinSlicer! $0.00
One reference at http://www.microsoft.com/nz/business/tswaar.mspx
Discussion at http://www.sqlmag.com/Forums/messageview.cfm?catid=10&threadid=6183
May 25, 2003 at 5:43 pm
OOPS!
Then copy the results window into the top window and execute it.
Now run the script for JNK, if it succeed then run the next lot, maybe table by table.
Change these...
May 24, 2003 at 2:07 am
BACKUP YOUR DATABASE BEFORE ATTEMPT ANY OF THE FOLLOWING.
Create a dummy table, like JNK, and copy a live table's data into it.
The script included will generate code to change the...
May 24, 2003 at 2:05 am
Open QUery Analyzer.
Copy/paste the script and execute, it consist of two select statement, harmless. Make sure you have selected the relevant database.
The script should produce a list of the tables...
May 23, 2003 at 5:44 pm
I think your 'application' needs to be able to determine when there is a new table via creation date or an exists if servers can be linked.
Plan b: Generate an...
May 23, 2003 at 5:38 pm
Have you try to debug sp on the server.
May 23, 2003 at 1:05 pm
Agree with a5xo3z1. Had a similar problem with older ASP app which was brought back from archives. Resolution was rather then to let the users 'type' a date, use a...
May 23, 2003 at 12:37 pm
Have a look at BOL 2000:
scan for startup procs Option.
May 22, 2003 at 10:42 pm
May help a bit!
Should be able to generate script to automate, keep mind constraints, indexes,etc.
Full backup before.
Select Object_Name(Id) as [Table],
...
May 22, 2003 at 10:11 pm
Rheejay, if one look at the statement with the Exists in mind, I am trying to determine 'are there any previous entries for the same code'. If not then this...
May 22, 2003 at 2:29 pm
Bit rought around the edges!
Create Table TestII(IDi int,AID INT, [Name] Char(2))
GO
Insert TestII values(1,2,'ba')
Insert TestII values(2,2,'cr')
Insert TestII values(3,2,'de')
Insert TestII values(4,1,'ba')
Insert TestII values(5,3,'ba')
GO
Create Function TestIII(@intAID Int) returns char(100) as
Begin
Declare @v-2 Varchar(100)
Set...
May 22, 2003 at 1:55 am
Not the best!
Declare @d SmallDateTime
Set @d='31 jan 2003'
Select DateAdd(ms,-3,DateAdd(m,1,'1 '+Right(Convert(Char(11),@d ,113),9)))
May 21, 2003 at 9:41 pm
Viewing 15 posts - 421 through 435 (of 663 total)