Viewing 15 posts - 7,201 through 7,215 (of 7,429 total)
Or get someone else to look the queries over the queries. Helps when more than one pair of eyes look at it. You really need to avoid the timeout change...
February 18, 2002 at 7:19 am
If all you did was change the install or register those DLL's, then yes and that was the answer. If they don't, then keep looking or reimage that machine. Otherwise...
February 18, 2002 at 7:17 am
Also be sure that your cursor is really needed to accomplish the job. I have in the past used cursor too often and recently reevaluated and got rid of 95%...
February 18, 2002 at 7:12 am
Technically since they created the system and we license it, they own the actually db.
February 16, 2002 at 8:49 pm
Short and simple:
DECLARE @date AS DATETIME
DECLARE @int AS INT
SET @date = '1/2/2002' /* Change to the day you wish to start at. */
SET @int = 0
WHILE @int < 20 /*...
February 16, 2002 at 8:46 pm
Or this if it varies like my network then.
ORDER BY CAST(RIGHT(IPAddress,(3 - CHARINDEX('.',RIGHT(IPAddress, 3)))) AS tinyint)
February 16, 2002 at 8:21 pm
That's usefull, I'll give that to my bud who gets stuck with all the account resposibilities.
February 16, 2002 at 8:10 pm
Again you could parse the date, something like this:
SUBSTRING(CONVERT(CHAR(10),dateFld),4,2) + '/' + LEFT(CONVERT(CHAR(10),dateFld),2) + '/' + RIGHT(CONVERT(CHAR(10),dateFld),4)
This should do it.
February 16, 2002 at 8:12 am
No the SQL Server setting. If you right click on the SQL Server in question in Enterprise Manager one of the tabs will have a language setting at the top...
February 15, 2002 at 6:28 pm
Ok so last thing, you say that if there is no value for Pax, admin, or crew then there is no row. Then do you have a table with all...
February 15, 2002 at 6:25 pm
Yeah that seems true everyday, but they also say "practice makes perfect" and I am telling you some of the idiots must practice regularly.
February 15, 2002 at 6:14 pm
For changes to inhouse items I use scripts or make the changes directly (usually when it is a handfull of simple things). The worst thing I ever had to do...
February 15, 2002 at 6:12 pm
Go with the FROM inserted version, as the data does not exist in the table at the point the trigger fires. If you want to catch when they insert %end...
February 15, 2002 at 5:47 pm
I don't know what the licensing issues are with DTS and may require a lincense for Enterprise Manager. But looking at the files dependencies I did not see anything that...
February 15, 2002 at 5:44 pm
And you do have to have the ()'s around your variable.
February 15, 2002 at 5:37 pm
Viewing 15 posts - 7,201 through 7,215 (of 7,429 total)