Viewing 15 posts - 631 through 645 (of 13,445 total)
i think we are just dealing with high ascii here, char 126-255, so switching to nvarchar shouldn't have an impact; i think it's just collation and case sensitivity.
February 2, 2017 at 12:10 pm
try this:
this is explicitly finding the ascii value, and replacing them; it's a modification of a strip high asciii that i had made previously.
note there are some...
February 2, 2017 at 11:58 am
your database is case-insensitive, so ?,S,? and s (four different versions of S)are found in the last replace.
you want to modify the proc to use binary collation instead
February 2, 2017 at 11:09 am
If there was no random requirement, this sounds like a bin packing problem...grab an unknown number of rows until they add up to either exactly $4000, or as close as...
February 1, 2017 at 10:20 am
as others have identified, the object was renamed with sp_rename.
OBJECT_DEFINITION and the definition in sql_modules are what is actually saved/stored.
when you go through the GUI, the...
February 1, 2017 at 5:55 am
if i try to connect to an explicit wrong port, i'd get a connection timeout error, even if the SQL Browser is running.
Server=myServerAddress,9999;Database=myDataBase;Trusted_Connection=True;
TITLE: Connect to...
January 31, 2017 at 9:12 am
I'm assuming that your column [START DATE] is what determines the order on a Per Id basis;
here's soemthing i slapped together, does this get you closer?
i had to...
January 31, 2017 at 9:04 am
the browser service helps application sort out the right place to connect.
so assume that something is connecting with a connection string like this, and your sole SQL server...
January 31, 2017 at 8:25 am
I'm a bit confused by what you mean when you say "Not sending data" when connecting via a port vs working file when using a named instance. i would expect...
January 31, 2017 at 8:16 am
are you sure you've assigned a static port in the SQL configuration manager?
The SQL Browser Service tells incoming connections to your instances which port to use, whether it's static...
January 31, 2017 at 8:05 am
i think your group by needs to round the timestamp to your interval of 20 seconds(DATEPART(SECOND, datetimestamp) %20, i think?) or at least to the nearest minute, which is a...
January 31, 2017 at 7:11 am
I've seen far too many SSAS experts leave out foreign keys in the sources they build to fill the cubes,because they think the source it's coming from already has referential...
January 30, 2017 at 4:55 am
COPY or MOVE? there's a difference!
copy duplicates the data, so you have to script all the objects out, change the schema in that script , and create the objects...
January 27, 2017 at 6:25 am
So I created a new schema. Now I need to move the stored...
January 26, 2017 at 2:37 pm
January 24, 2017 at 10:38 am
Viewing 15 posts - 631 through 645 (of 13,445 total)