Viewing 15 posts - 5,011 through 5,025 (of 9,643 total)
Try using case like this:
;
with mycols(ID, colvalue1, colvalue2, colvalue3)
AS (SELECT
...
May 22, 2009 at 3:03 pm
Sounds to me like you need to buy a dedicated server for that application and let the outside developers manage it, since you can't put it on an existing SQL...
May 22, 2009 at 2:55 pm
Sam,
You shouldn't run the Shrink Database command. That is the point that Jeffrey and Tim were trying to make in their posts.
As mentioned the only time you...
May 22, 2009 at 2:50 pm
Lynn Pettis (5/22/2009)
May 22, 2009 at 2:43 pm
Have you verified that the Data Source was deployed? If it was deployed, was the User Name and Password saved?
May 22, 2009 at 2:40 pm
Jan Van der Eecken (5/22/2009)
Florian Reischl (5/22/2009)
Something new for this threads topic::w00t:
Now, that' a very interesting approach. Could have never thought of that myself. Kill SQL, then copy...
May 22, 2009 at 2:40 pm
By using the UDF SQL Server has to call the UDF for each row in returned, while the UPPER() function is optimized.
If you need to use the function you would...
May 22, 2009 at 2:31 pm
Can yo create a linked a server from the SQL Server to ORACLE using that driver?
May 22, 2009 at 2:22 pm
Have you verified that the ORACLE oledb provider is installed on the SQL Server? Have you checked for a 64 bit driver?
May 22, 2009 at 2:17 pm
There is not a subquery in the code you provided.
Please include the ALL code you are running that produces the error.
May 22, 2009 at 2:14 pm
I'd also be concerned that this trigger, and I would assume the others, only handles a single row delete. What happens if there is a set-based delete?
I'd...
May 22, 2009 at 2:08 pm
Without backups you will have to rebuild msdb. Check out this article.
May 22, 2009 at 1:52 pm
Do you have the FailPackageOnFailure property of the dataflow task set to false?
May 22, 2009 at 1:43 pm
SQL Server is doing the conversion BEFORE any filtering. Since you are OR'ing the criteria I would recommend using UNION ALL like this:
SELECT
M.modelid
FROM
...
May 22, 2009 at 1:33 pm
Here's one way:
CREATE TABLE [dbo].[ES]
(
[ID] [int] NOT NULL,
[Wages] [char] (8) Null
)
CREATE TABLE [dbo].[Master]
(
[ID] [int] NOT NULL,
[Wages] [decimal](9, 2) NOT NULL
)
INSERT INTO dbo.ES (
ID,
Wages
)
SELECT
1,
...
May 22, 2009 at 1:15 pm
Viewing 15 posts - 5,011 through 5,025 (of 9,643 total)