Viewing 15 posts - 46 through 60 (of 323 total)
ibrahim_sh_87 (3/25/2009)
i am trying to query from a stored Procedure found from a remote server...and join the results with data found on a table another database.... my sql statment...
March 25, 2009 at 3:40 am
Catcha (3/24/2009)
Is there any tricks to improve this query not like query, like this?
where deal_no not like 'IMGATD%'
I tried using
left (deal_no,6) <> 'IMGATD'
but the...
March 24, 2009 at 11:58 pm
Problem with your path provided in Backup statement. for more info see SQL BOL.
Possible, post the script.
March 24, 2009 at 11:29 pm
Many ways to delete the duplicate records, for more information navigate the following URL's:
http://www.sqlservercentral.com/articles/Advanced+Querying/deletingduplicaterecords/1630/ --> with cursors
http://www.sqlservercentral.com/scripts/TSQL/62866/
http://www.sqlservercentral.com/scripts/Miscellaneous/65420/
http://www.sqlservercentral.com/scripts/duplicate+records/65099/
February 27, 2009 at 1:37 am
nabajyoti.b (2/9/2009)
Is there a function to compare tow strings.where a string can a composed of many words with length exceeding 255 characters.
in SQL 2005, one string function exists is "DIFFERENCE",...
February 9, 2009 at 4:26 am
Simon Smith (2/9/2009)
Will have a look at the link as...
February 9, 2009 at 3:39 am
Simon Smith (2/9/2009)
One is a 64 bit SQL 2005 server - SP2.
The other is a 32 bit SQL 2000 server - SP4.
I need to run a...
February 9, 2009 at 3:32 am
Hemalatha (2/9/2009)
Can I retrieve from the log file, if yes then how
if you have any log file backup, then you can restore the data from log file.
regards.
February 9, 2009 at 3:00 am
Hemalatha (2/9/2009)
i am using sql server 2005. I have not given any rollback or commit Neither do I have any triggers.
Just deleted some 100 records by...
February 9, 2009 at 2:38 am
* if you use, begin trans, then you can rollback the operation.
* if you have any delete trigger on that table, then you can get the data.
which version of SQL...
February 9, 2009 at 2:09 am
ritesh.saluja (12/23/2008)
I believe there is no 2.5. We have .Net fram 2.0 which is already present in my box
If your operation system is WinXP then, first install SP3 and install...
December 23, 2008 at 3:01 am
rembersu (12/22/2008)
Can you please advise How to Import Text file with Caret '^' delimiter data format. The import/export wizard does not show the Caret delimiter option.
Thanks in...
December 23, 2008 at 2:57 am
siddalingaswamyd (12/22/2008)
could you please help me with the code??? I dont know how sqlcmd works...thanks,
sid
try like:
sqlcmd -E -Q "exec xp_readerrorlog 1" -o "C:\out.txt"
it works fine.
December 23, 2008 at 2:55 am
prakashdotc (12/22/2008)
--------------------------------------------------------------------------------------------
ProductId - Date 1 - Date 2 - Date 3 - Date 4...
December 22, 2008 at 3:25 am
subha.v (12/22/2008)
Sorry the table contain 700,000 records.Thanks
Subha
700,000 records is not big size in table.
run the following DBCC commands:
> DBCC CHECKTABLE.
> DBCC UPDATEUSAGE ( ), if it is not a production...
December 22, 2008 at 2:38 am
Viewing 15 posts - 46 through 60 (of 323 total)