Viewing 15 posts - 31 through 45 (of 95 total)
Hi,
you can use a common table expression CTE like:
;with cte_Childs(
RelationString,
AccountID
)as(
select cast(r.AccountID...
April 21, 2011 at 3:29 pm
The third question was, whether you get the error after a longer time of execution.
Have you tried to cast the longtext column to nvarchar? Or create a view in mysql...
April 18, 2011 at 9:24 am
The third question was, whether you get the error after a longer time of execution.
Have you tried to cast the longtext column to nvarchar? Or create a view in mysql...
April 18, 2011 at 9:24 am
Hi,
Imagine, you implement a replication, all on the same disk. When the robots insert data, this data will be written also to the distribution database on the same disk. Then...
April 18, 2011 at 9:12 am
Hi,
Imagine, you implement a replication, all on the same disk. When the robots insert data, this data will be written also to the distribution database on the same disk. Then...
April 18, 2011 at 9:12 am
Scope_identity() would fix it, but if you use a second table you can start a tran with a select with a lock hint to prevent other user to get a...
April 17, 2011 at 3:59 pm
Hi,
usually microsoft writes in his system requirements "SPx or later". That should mean they support the latest.
http://www.microsoft.com/germany/sql/2005/uebersicht/systemanforderungen.mspx
Sorry for the german site, I couldn't find this in english... :unsure:
April 17, 2011 at 2:54 pm
Hi,
first you must restore the last full backup, after this you only need to restore the last differential backup (because it relates to the last full backup not differential backup)....
April 17, 2011 at 2:16 pm
Hi,
have you restarted the default instance? How much physical memory is available on the virtualized server and how much on the esx host system? So are you sure that it...
April 16, 2011 at 3:46 am
Hi,
have you restarted the default instance? How much physical memory is available on the virtualized server and how much on the esx host system? So are you sure that it...
April 16, 2011 at 3:46 am
Hi,
no, you can't get your "subscribers". Through a linked server you connect like any other user in your sql server environment, so you can perhaps get all clients from which...
April 16, 2011 at 3:31 am
Hi,
no, you can't get your "subscribers". Through a linked server you connect like any other user in your sql server environment, so you can perhaps get all clients from which...
April 16, 2011 at 3:31 am
Either you can convert your boxnumber to an identity column and get the inserted row by SCOPE_IDENTITY() function or you create an extra table to save the last returned boxnumbers.
April 16, 2011 at 1:28 am
Either you can convert your boxnumber to an identity column and get the inserted row by SCOPE_IDENTITY() function or you create an extra table to save the last returned boxnumbers.
April 16, 2011 at 1:28 am
Have you tried a non-odbc driver to get the data? Is the mysql db on the same server? Have you get the error after a longer time?
April 16, 2011 at 1:12 am
Viewing 15 posts - 31 through 45 (of 95 total)