Viewing 15 posts - 1 through 15 (of 20 total)
If you are referring to an database role, yes we do have such a role set up.. and all the db user are added to it. I left that...
March 23, 2009 at 6:00 pm
Bruce:
With the user example above,
select system_user as [system_user],current_user as [current_user],user as ;
returns:
"TEAMWORK\akruesse" , "DBO", "DBO"
Desired value would be "Agnes_Kruessel"
If you Windows login and database user name are the same...
March 23, 2009 at 4:05 pm
By "sysadmin group" are you referring to the user's membership in the "Planners" role, GSquared... and Planners' ownership by dbo?
If so, is there anyway to alter the Planners role to...
March 6, 2009 at 12:21 pm
There don't seem to be any other export options. Every format I try except XML exports the controls codes as text.
December 22, 2008 at 5:13 pm
Table2 and Table3 each have 3 column datatypes in them that Table1 does not:
"varchar(max)" (table2 has 2, Table3 has 6)
"char" (table2 has 3, Table3 has 3)
"decimal" (table2 has...
May 7, 2008 at 2:08 pm
This looks promising, jsheldon. My Thanks!
Keep in mind that the legacy server is not a true Sybase engine, but rather the Sybase SQL Anywhere (SQLA) product, formally known as...
February 20, 2008 at 4:15 pm
It's a mystery to me how SQL Server is not set up to handle what in our view is a basic necessity (namely: "when" was the record last updated, and...
January 30, 2008 at 2:18 pm
Applied:
EXEC sp_dbcmptlevel 'SPLINT'
returned '80'
Ah Hah!
Applied:
EXEC sp_dbcmptlevel 'SPLINT', '90'
That did the trick! Now I'm good to go.
Figured it had something do with that fact that it's legacy db.
Many...
December 21, 2007 at 2:02 pm
Thanks Jack:
I applied the following:
use master
ALTER AUTHORIZATION ON DATABASE::SPLINT to sa -- "splint" is my errant db name
No change in behavior. Same error msg.
"Ckeck out BOL"?
December 21, 2007 at 11:42 am
Thanks SQLBill:
I applied the following:
use splint -- "splint" is my errant db name
exec sp_changedbowner 'sa'
No change in behavior. Same error msg.
Should I restart the SQL Server?
Are Diagrams...
December 21, 2007 at 11:40 am
I imposed myself on your script, George, after getting a few error msgs (see below). Note that I added the three selects to the SP, which means that tRolemember could...
September 11, 2007 at 5:54 pm
Those work for me, Aaron.
I extended both versions to the following in order to determine both the Day's beginning and end datetimes:
select CONVERT(
September 11, 2007 at 5:03 pm
I just posted a question re SybaseSQLAny functions missing in SS
The SybaseSQLAny List() function comes to mind here.
"select Project , list(Emp) as "Emplist" from EmpProject order by Project" ...
September 11, 2007 at 4:31 pm
Yes looked at all those and other. I ended up with a format file which is documated as being the only way to deal wth varbinary(max) data in bcp and...
August 21, 2007 at 6:37 pm
Simalar issue:
Having unloaded a table (containing column "Contents long binary") from a Sybase SQLAny db, I am now trying to bulk insert the data into a SS2K5 db table with the same...
July 27, 2007 at 3:09 pm
Viewing 15 posts - 1 through 15 (of 20 total)