Viewing 15 posts - 946 through 960 (of 992 total)
True, it does appear the case in query analyser...
My 1899-12-30 answer came from me using Delphi for 95% of my development - if I retrieve a 0 datetime value from...
June 7, 2005 at 4:34 am
I think Michael's point is valid - if you were using EM, make sure that you let it know it is a string as in
"2005-1-1", NOT 2005-1-1 as it...
June 6, 2005 at 7:16 am
I sometimes find a similar situation for my app just after the server has started - the DB is taking a long time to read a lot of data in...
May 25, 2005 at 7:59 pm
I think it might've been the one from RedGate that I've used in the past
Good point with the identity columns - they will...
May 25, 2005 at 7:55 pm
I'm not sure I fully follow your situation, but I would look to see what account your server's are running under as a service - perhaps the service account of...
May 24, 2005 at 1:24 am
I have used the diskeeper product and yes, I have also heard that it is the grander version of microsoft's bundled offering (many of MS utilities are licensed, cut-down versions...
May 24, 2005 at 1:22 am
And many things in file-based systems, like definite record numbers, simply do not exist in SQL server (and for good reason - it's a set of data. If you want...
May 24, 2005 at 1:13 am
Or you could keep your static SQL but rather than make use of your charindex statement, which cannot use any indices, you can use a UDF that returns a table.
For...
May 24, 2005 at 1:10 am
Unfortunately replication won't do this for you as far as I know. Replication works a treat if you have one initial source database, which is then replicated to other machine(s). ...
May 24, 2005 at 1:04 am
Firstly, someone on this forum could have possibly made the suggestion if you had the table definitions including in your post - makes things easier to understand sometimes
May 23, 2005 at 4:53 am
From memory, many cursors (depending on how they are declared) use temp tables to provide the forward/backward functionality anyway.
Also, table variables are not always entirely in memory - they too...
May 19, 2005 at 5:29 pm
You should look at OPENROWSET in SQL Server Books Online or OPENDATASOURCE.
OPENROWSET returns a table, so you could issue something like
insert into OPENROWSET(....)
values(....)
OPENDATASOURCE provides you with a connection to a...
May 15, 2005 at 10:48 pm
Could you please post the code of your SP? I assume you are using the 3 part name to retrieve the data...
So you have a stored proc in db1 which...
May 15, 2005 at 4:23 am
Have you changed the name of the computer since installing SQL Server? I recall some sort of problem that you would have to drop the old computer name and add...
April 18, 2005 at 7:54 am
SQL Server has no built in facility to perform what you are after. You'll have to have table updates done through a stored procedure to ensure your rules are enforced,...
March 26, 2005 at 4:32 am
Viewing 15 posts - 946 through 960 (of 992 total)