Viewing 15 posts - 961 through 975 (of 1,124 total)
In first place, how could you able to pass an empty string to an int parameter? Unfortunately, i don't have the box right now to test for it. ...
October 30, 2007 at 11:22 am
You can build an UPDATE statement like...
UPDATE AnyTable SET Col1 = REPLACE( Col1, '"', '' ), Col2 = REPLACE( Col2, '"', '' )
Note: It will not only update the...
October 30, 2007 at 11:05 am
David (10/30/2007)
Ramesh, that does not return all records when '' is passed. Please see the third posting in this topic.
My mistake,....
CREATE PROCEDURE Test
@employee int = NULL
AS
SELECT * FROM Employees
WHERE...
October 30, 2007 at 10:58 am
Jeff Moden (10/29/2007)
In MS Word...{Edit}{Paste Special}{Unformatted Text}
Thanks, that worked...
October 30, 2007 at 10:55 am
Why don't use this....
CREATE PROCEDURE Test
@employee int = NULL
AS
SELECT * FROM Employees
WHERE EmployeeID = @Employee or @Employee IS NULL
October 30, 2007 at 10:51 am
You have to explicitly convert the datetime ixl_expire_date_ext column to character data type since case statement could only return a value of same data type.
The case statement should...
October 29, 2007 at 10:17 am
SQL Server Installer, by default, installs in the windows drive....(That doesn't mean, the installer will upgrade the existing instance).
Just go through the installation from the start, when you...
October 29, 2007 at 9:53 am
Jeff Moden (10/29/2007)
Lot's of folks keep a bit of handy test table code around for these types of tests. It's built using the same method I showed you to...
October 29, 2007 at 9:42 am
Could you help us by providing sample script with data and the output that you want?
October 29, 2007 at 9:38 am
2.5 hours too much for a file of size 26MB ...I've been importing files with 30MB+ in just 2-3 minutes. I mainly use Transfer Data and Bulk Insert tasks...
October 29, 2007 at 9:37 am
When exactly you're encountering with this (on what page)?
October 29, 2007 at 8:01 am
You can get the management tool for SQL Express also. If this is not possible, then you need to create a batch file that runs dtexec command line utility.
October 29, 2007 at 7:51 am
Bret A Schuhmacher (10/29/2007)
October 29, 2007 at 7:39 am
Yes it is possible..
FROM Table1 INNER JOIN Table2 ON ( CASE Table2.ProductType WHEN 'Datasheet' THEN Table1.Datasheet WHEN 'Manual' THEN Table1.Manual ELSE 'Unknown' END ) = 'xxx'
October 29, 2007 at 7:27 am
Viewing 15 posts - 961 through 975 (of 1,124 total)