Viewing 15 posts - 166 through 180 (of 479 total)
Hi
Did you try the function I submitted?? damn site simpler! 🙂
This was a port from an old classic C function
Cheers
Ck
Chris Kempster
Author of "SQL Server 2k for the Oracle DBA"
July 24, 2003 at 7:55 pm
Hi there
http://www.chriskempster.com/tipsandhints.html
I have an Article I wrote sometime back on an example fix...
(Word Doc) SSPI Context Error Resolution Example
Cheers
Ck
Chris Kempster
Author of "SQL Server 2k for the Oracle DBA"
July 24, 2003 at 12:18 am
From google groups:
CREATE FUNCTION dbo.ConvertHexToInt (@inputstring varchar(20))
RETURNS int AS
BEGIN
DECLARE @digit as int;
DECLARE @result as int;
DECLARE @index as int;
DECLARE @length as int;
DECLARE @convstr as char(16);
SET @result...
July 24, 2003 at 12:11 am
Hi
"Sent it back to you", do you mean the full backup file or the physical database files?? how did you get the DB up and running again (sp_attach?) or...
July 16, 2003 at 7:11 pm
Hi there
This is a really tricky one and hard to answer. I suppose the issues are compounded with these variables:
a) how the growth settings are configured for each...
July 16, 2003 at 7:08 pm
On the 16th I believe.. some more senarios etc are discussed.
Chris Kempster
Author of "SQL Server 2k for the Oracle DBA"
July 14, 2003 at 8:12 am
Hi there
Some things to check:
a) do a full backup, then run the stored proc to do one and only one log backup, try a restore by applying the full...
July 12, 2003 at 9:42 pm
Hi Steve
Actually, I forgot to discuss archiving projects, even in part 2 of the article. How and when you clean up is up to you. One of the...
July 12, 2003 at 8:50 am
Hi there
Your problem is that you want to know what objects to grant the crystal user access to id image and avoid doing a code walkthough (by this other person)?...
July 10, 2003 at 9:59 pm
Well im not writing it for you ... but check these objects out:
mydb..sysmembers: contains a row for each member of a database role
master..syslogins: hooks to...
July 10, 2003 at 7:52 pm
Hi there
I dont know a lot about it, but may be able to help. We here use crystal reports, we use the RDC API and not the enterprise api...
July 10, 2003 at 7:39 pm
Hi there
There are no virtual columns, such as rowid, that you can access "easily". The row is located via a file:page:slot combo, all of which is not quickly accessible...
July 10, 2003 at 7:17 pm
shoot, sorry, my comment was for SQLBill - didnt read the posts carefully enough. Anyhow, SQLBill, with that honking great table, what did you do with it?? this sort...
July 10, 2003 at 1:08 am
Hi
The size is not an issues. I would think very carefully about:
a) number and sizes of indexes and where they will reside
b) plan to stripe this table...
July 10, 2003 at 1:03 am
Hi there
The differentiator, i think, is to do with connectiveness and persistence of the connectivity. In client server the connection is made and persists at all times for that...
July 10, 2003 at 12:53 am
Viewing 15 posts - 166 through 180 (of 479 total)