Can someone help with spawning a dqy file?
_spawnlp(P_NOWAIT, "dqyfile.dqy", "dqyfile.dqy", NULL) gives an error -1.
Thanks in advance.
I need to create a table on a database on a linked server...
I get the following error when specifying the server:
create table server.db.dbo.test_table
(
col_test char(10)
)
Server: Msg 117, Level 15, State 1, Line 2
The object name 'server.db.dbo.' contains more than the maximum number of...
I am trying to create a table in another database, why am i getting this error and how can I avoid it? Thanks!
create table dbsrv.db.dbo.table_name
(
col_test char(10)
)
The object name 'dbsrv.db.dbo.table_name.' contains more than the maximum number of prefixes. The maximum is 2.
The following should kill all SQL users and allow only a single user:
ALTER DATABASE db
SET SINGLE_USER
For some reason this runs forever and ever and does not seem to stop and I have no idea why.
ALTER DATABASE db
SET MULTI_USER
only takes a second to run.
I need this to work on SQL7 and...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.