Viewing 15 posts - 1,156 through 1,170 (of 5,103 total)
In 2005 you could setup peer-to-peer which is also bi-directional.
There are (as with everything) tradeoffs for each replication type
June 13, 2008 at 1:00 pm
There are problems.
1- you are using dynamic sql to call the stored procedure so you are open for sql injection.
2. If you use parameters and pass them as NULL you...
June 13, 2008 at 11:47 am
From your Post:
For example, I'm showing SQLAgent - TSQL JobStep (Job 0x3E31DB24ED72CD49A8114462A66A0367 : Step 1) in sysprocesses, yet the job_id for this job is 24DB313E-72ED-49CD-A811-4462A66A0367.
IF you replace 0x3E31DB24ED72CD49A8114462A66A0367 in the...
June 13, 2008 at 11:38 am
... 10GB increments....
sounds like *A LOT* for increments 😉
June 13, 2008 at 11:33 am
Adam Bean (6/13/2008)
akshay1974 (6/13/2008)
e.g.
select * from msdb..sysjobs
where job_id...
June 13, 2008 at 11:23 am
avipenina (6/13/2008)
i try to look in BOL for RAISERROR 9100,and i can't make it.can you help me Plz with the syntax to raise the ERROR 9100.
THX
The ability to raise "ANY"...
June 13, 2008 at 11:14 am
greysun75 (6/13/2008)
Set rsResults...
June 13, 2008 at 11:00 am
The number of quotes does not makes sense. In addition you are using Temptables that do not seem to be declare elsewhere in the script ?
June 13, 2008 at 10:55 am
A "blank" variable is not a NULL value therefore coalesce will return a zero-length string and your "ANDs" will be false.
June 13, 2008 at 10:53 am
jagadish_sds (6/11/2008)
Is there any functions/methods available in sql server...
June 13, 2008 at 9:07 am
People tend to call that to an "audit" table which has the same structure than the normal table plus some extra metadata information like timestamp for the change, if the...
June 13, 2008 at 9:02 am
Seems like a client side issue. Nothing to do with SQL Server.
June 13, 2008 at 9:00 am
If you need to increase the search speed even further you could create an INDEXED VIEW and run your query on it.
the view definition would be like:
select fk_tbl_users_id, fk_tbl_visits_id, date,...
June 13, 2008 at 8:54 am
I don't understand why such an old and bad rated article is still alive in this site.
June 13, 2008 at 8:39 am
Another thing to consider is the posibility of "archiving" old data. It has been my experience that in many occassions we let the tables grow with data that is almost...
June 13, 2008 at 7:26 am
Viewing 15 posts - 1,156 through 1,170 (of 5,103 total)