Viewing 15 posts - 361 through 375 (of 608 total)
SriSudha (6/12/2013)
Please help me,
In my table have a one date column. It contains data in different formats .I want to set all these...
June 14, 2013 at 7:49 am
INSERT INTO
dbo.Logtable (AdditionalInfo)
SELECT
'Another Process with ID: ' + CAST(ID AS VARCHAR(25)) + ' is currently in use')
FROM
[CBH]
WHERE
[SID] = 2;
INSERT INTO
dbo.Logtable (AdditionalInfo)
SELECT
'Another Process with ID: ' + CAST(ID AS VARCHAR(25)) +...
June 14, 2013 at 7:41 am
I also use Visio for reverse engineering database models. The Database Diagram will change your objects, however if you need to use it then you can restore your database onto...
June 14, 2013 at 7:35 am
Lucky9 (6/13/2013)
it has 10 union all between select scripts..performance is very slow...what is the alternate for union all..
and all the select statements have derived...
June 14, 2013 at 7:09 am
Sapen (6/13/2013)
password protected?
Password protection of zip files is a function of the zip software you use before sending the email.
June 13, 2013 at 9:52 am
How wide is your clustered index.
Can you supply DDL for the clustered index and for the suggestion.
June 13, 2013 at 4:38 am
Sean Pearce (6/13/2013)
masterjd (6/12/2013)
Here is an example of one of them.That is not a user defined system proc.
You really should not change system stored procs at all. For one, any...
June 13, 2013 at 4:13 am
masterjd (6/12/2013)
Here is an example of one of them.
That is not a user defined system proc.
June 13, 2013 at 4:08 am
EXEC msdb..sp_send_dbmail
@recipients = '',
@subject = '',
@body = '',
@file_attachments = 'C:\my_csv.zip';
June 13, 2013 at 4:04 am
ChrisM@Work (6/12/2013)
Here's a pure tsql way which performs reasonably well:
It only performs reasonably well in the UK 😉
June 13, 2013 at 3:36 am
SQL_Enthusiast (6/12/2013)
Is using SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED in this manner not so bad after all?
Think of it this way.
Pretend that the replicated server is hosting your companies timesheet...
June 13, 2013 at 3:34 am
GilaMonster (6/12/2013)
The only two ways to move the LOB data are to recreate the table (insert into ... select from...
June 13, 2013 at 2:22 am
SQL Show (6/13/2013)
Thanks for tip to move into a new filegroup. Again the problem downtime. am going to escalate this to my mangement.
With 30Gb data and ONLINE...
June 13, 2013 at 1:09 am
Viewing 15 posts - 361 through 375 (of 608 total)