Viewing 15 posts - 61 through 75 (of 99 total)
Any select query with aggerate function requires a GROUP By clause with columns list to be grouped on.
May 23, 2013 at 11:39 pm
Use .NET App for parsing this xml file into a DataSet hen you can use this Dataset for saving in SQL
May 23, 2013 at 6:39 am
raghuldrag (5/23/2013)
Hai BhaskarShetty,the procedure wont allow first entry?
It wont allow entry with the date less than 23/05/2013 as we are checking max departure date in the procedure
May 23, 2013 at 4:44 am
DECLARE @OutPara
EXEC @OutPara = dbo.Proc Parameter
May 23, 2013 at 3:09 am
ReIndex all the Indexes from the Databases.
EXEC sp_msforeachtable @COMMAND1="PRINT '?' DBCC DBREINDEX('?','',80)"
GO
Update all Statistics from the Database.
EXEC SP_UPDATESTATS
GO
May 23, 2013 at 2:46 am
sqlnaive (5/23/2013)
If you insist on making just one trigger based on all events, here is what you can do inside...
May 23, 2013 at 2:42 am
why I suggested this because the file missing error showing that it searching for .net framework 2.0 file and folder.. am Not Sure.. you can give a try and check,
May 23, 2013 at 2:37 am
Instead of triggers you can use OUTPUT Parameter, Like Below.
--- For Insert ---
INSERT INTO TableName
OUTPUT INSERTED.* INTO ToTableName
VALUES
---
--- For Update ---
UPDATE TableName SET ColumnToupdate
OUTPUT deleted.* INTO ToUpdTableName
---
--- For Delete...
May 23, 2013 at 2:32 am
chandan_jha18 (5/23/2013)
May 23, 2013 at 2:12 am
Try Replacing 'NULL' WITH NULL (i.e. Removing Single quotes from NULL value), and there are some problem in the value list pass by you.
May 23, 2013 at 2:06 am
Try connecting Snapshot agent using Sql Server User Credential.
May 23, 2013 at 1:55 am
Try installing .Net Framework 2.0 the error shows the file missing for v2.0
May 23, 2013 at 1:50 am
Phil Parkin (5/23/2013)
You cannot call insert like that, = operator works while you are updating any row or table.
Is plainly wrong - I proved it in code. And now...
May 23, 2013 at 1:28 am
chandan_jha18 (5/23/2013)
Bhaskar.Shetty (5/23/2013)
The intial snapshot apply...
May 23, 2013 at 1:23 am
Phil Parkin (5/23/2013)
Bhaskar.Shetty (5/23/2013)
You cannot call insert like that, = operator works while you are updating any row or table.
Before making blanket statements like this, I find that it...
May 23, 2013 at 1:09 am
Viewing 15 posts - 61 through 75 (of 99 total)